summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 454efb4)
raw | patch | inline | side by side (parent: 454efb4)
author | Markus Heidelberg <markus.heidelberg@web.de> | |
Tue, 31 Mar 2009 23:55:39 +0000 (01:55 +0200) | ||
committer | Shawn O. Pearce <spearce@spearce.org> | |
Sun, 5 Apr 2009 20:06:24 +0000 (13:06 -0700) |
This works around git-gui's error message
Cannot use funny .git directory: .
when started from the .git/ directory, which is useful in repositories
without any directories for the right click.
Now git-gui can be started via Windows Explorer shell extension (Git GUI
Here) from the .git/ directory.
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Cannot use funny .git directory: .
when started from the .git/ directory, which is useful in repositories
without any directories for the right click.
Now git-gui can be started via Windows Explorer shell extension (Git GUI
Here) from the .git/ directory.
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
windows/git-gui.sh | patch | blob | history |
diff --git a/windows/git-gui.sh b/windows/git-gui.sh
index 53c3a94686813936445efbb055dc4f02885c70e9..66bbb2f8faaf83bc87819a9e288a0592f400e147 100644 (file)
--- a/windows/git-gui.sh
+++ b/windows/git-gui.sh
exec wish "$0" -- "$@"
if { $argc >=2 && [lindex $argv 0] == "--working-dir" } {
- cd [lindex $argv 1]
+ set workdir [lindex $argv 1]
+ cd $workdir
+ if {[lindex [file split $workdir] end] eq {.git}} {
+ # Workaround for Explorer right click "Git GUI Here" on .git/
+ cd ..
+ }
set argv [lrange $argv 2 end]
incr argc -2
}