summaryrefslogtreecommitdiff
path: root/git-gui.sh
diff options
context:
space:
mode:
authorLibravatar Pat Thoyts <patthoyts@users.sourceforge.net>2013-09-12 21:15:19 +0100
committerLibravatar Pat Thoyts <patthoyts@users.sourceforge.net>2013-09-12 21:15:19 +0100
commit224cce8f9bb0403ec441ec709d2769adb8f66eb0 (patch)
tree36b284a47492690d8614aa7df07e0863cf54dd94 /git-gui.sh
parentgit-gui: corrected setup of git worktree under cygwin. (diff)
downloadtgif-224cce8f9bb0403ec441ec709d2769adb8f66eb0.tar.xz
git-gui: add menu item to launch a bash shell on Windows.
When using git-gui as the primary git application on Windows it can be awkward obtaining a suitable shell. This commit adds a menu item to the Repository menu that launches the bash shell provided with the git installation on Windows. Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
Diffstat (limited to 'git-gui.sh')
-rwxr-xr-xgit-gui.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/git-gui.sh b/git-gui.sh
index 66db995ed0..db46ac50bf 100755
--- a/git-gui.sh
+++ b/git-gui.sh
@@ -2665,6 +2665,16 @@ if {![is_bare]} {
.mbar.repository add command \
-label [mc "Explore Working Copy"] \
-command {do_explore}
+}
+
+if {[is_Windows]} {
+ .mbar.repository add command \
+ -label [mc "Git Bash"] \
+ -command {eval exec [auto_execok start] \
+ [list "Git Bash" bash --login -l &]}
+}
+
+if {[is_Windows] || ![is_bare]} {
.mbar.repository add separator
}