From: Shawn O. Pearce Date: Wed, 18 Jul 2007 05:48:41 +0000 (-0400) Subject: git-gui: Clarify the visualize history menu options X-Git-Tag: gitgui-0.8.0~36 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4040971269e28676037448c4a6754d760eea1a64;p=git.git git-gui: Clarify the visualize history menu options Users who are new to Git may not realize that visualizing things in a repository involves looking at history. Adding in a small amount of text to the menu items really helps to understand what the action might do, before you invoke it. Signed-off-by: Shawn O. Pearce --- diff --git a/git-gui.sh b/git-gui.sh index ac04bc0b2..247348879 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -1679,11 +1679,11 @@ trace add variable current_branch write ".mbar.repository entryconf [.mbar.repos .mbar.repository add separator .mbar.repository add command \ - -label {Visualize Current Branch} \ + -label {Visualize Current Branch's History} \ -command {do_gitk $current_branch} -trace add variable current_branch write ".mbar.repository entryconf [.mbar.repository index last] -label \"Visualize \$current_branch\" ;#" +trace add variable current_branch write ".mbar.repository entryconf [.mbar.repository index last] -label \"Visualize \$current_branch's History\" ;#" .mbar.repository add command \ - -label {Visualize All Branches} \ + -label {Visualize All Branch History} \ -command {do_gitk --all} .mbar.repository add separator