From: Shawn O. Pearce Date: Wed, 18 Jul 2007 13:37:27 +0000 (-0400) Subject: Don't offer my special Tools/Migrate hack unless in multicommit X-Git-Tag: gitgui-0.8.0~33 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=dc5ccdc6cab41e8a4b2ace991b1564fe9bdd172d;p=git.git Don't offer my special Tools/Migrate hack unless in multicommit Users shouldn't see this menu option if they startup a browser or blame from the command line, especially if they are doing so on a bare repository. Signed-off-by: Shawn O. Pearce --- diff --git a/git-gui.sh b/git-gui.sh index 247348879..7b6a96e4f 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -1888,7 +1888,9 @@ if {[is_MacOSX]} { # -- Tools Menu # - if {[is_Cygwin] && [file exists /usr/local/miga/lib/gui-miga]} { + if {[is_Cygwin] + && [is_enabled multicommit] + && [file exists /usr/local/miga/lib/gui-miga]} { proc do_miga {} { if {![lock_index update]} return set cmd [list sh --login -c "/usr/local/miga/lib/gui-miga \"[pwd]\""]