OSDN Git Service

git-gui: Move commit_prehook into commit_tree.
authorShawn O. Pearce <spearce@spearce.org>
Sun, 21 Jan 2007 09:28:22 +0000 (04:28 -0500)
committerShawn O. Pearce <spearce@spearce.org>
Sun, 21 Jan 2007 09:28:22 +0000 (04:28 -0500)
The only reason the commit_prehook logic was broken out into its own
proc was so it could be invoked after the current set of files that
were already added to the commit could be refreshed if 'Allow Partially
Added Files' was set to false.  Now that we no longer even offer that
option to the user there is no reason to keep this code broken out
into its own procedure.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
git-gui.sh

index e82eb6b..e4676bf 100755 (executable)
@@ -825,6 +825,7 @@ proc committer_ident {} {
 
 proc commit_tree {} {
        global HEAD commit_type file_states ui_comm repo_config
+       global ui_status_value pch_error
 
        if {![lock_index update]} return
        if {[committer_ident] eq {}} return
@@ -900,12 +901,8 @@ A good commit message has the following format:
                return
        }
 
-       commit_prehook $curHEAD $msg
-}
-
-proc commit_prehook {curHEAD msg} {
-       global ui_status_value pch_error
-
+       # -- Run the pre-commit hook.
+       #
        set pchook [gitdir hooks pre-commit]
 
        # On Cygwin [file executable] might lie so we need to ask