This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
forked from git-for-windows/git
-
Notifications
You must be signed in to change notification settings - Fork 317
core.worktree #270
Comments
git gui:
|
It does not seem like this is a Window-specific problem, or is it, @Keepun? |
Window-specific |
But the problem is probably in "git gui". |
Thanks-clarify |
Bug in Git\libexec\git-core\git-gui.tcl:
And bug in:
Atlassian SourceTree and GitExtensions can not work with core.worktree Temporary fix for Git GUI:
|
EEXPLANTOOSHORT ;-) |
@Keepun I missed that you updated your very terse explanation. So now it looks as if your problem might be solved by extending if {$_gitdir eq "."} {
set _gitdir [pwd]
} to if {$_gitdir eq "."} {
set _gitdir [pwd]
} elseif ($_gitdir eq .git) {
set _gitdir [pwd]/.git
} If that fixes your problem, please report back and I will integrate the patch into Git for Windows 2.x. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
core.worktree sets the path to the --git-dir :(
In 1.9.2-preview20140411 setting works, but the files will not open.
The text was updated successfully, but these errors were encountered: