diff options
author | Junio C Hamano <junkio@cox.net> | 2005-07-22 19:09:05 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-22 20:34:16 -0700 |
commit | f6e1a4d6dc4d1b3d82d5e87fdd817b3994dda5e0 (patch) | |
tree | 1322ada9a1dfcd001370437948ad2d4c24b8508b /git-commit-script | |
parent | a38e727925bfad369fc98165f6ff161193397f28 (diff) | |
download | git-f6e1a4d6dc4d1b3d82d5e87fdd817b3994dda5e0.tar.gz |
[PATCH] Audit rev-parse users.
This patch changes rev-parse users that pass a single argument
that is supposed to be a rev parameter to use "--verify".
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-commit-script')
-rwxr-xr-x | git-commit-script | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-commit-script b/git-commit-script index 04d16ae92f..dae487f3fd 100755 --- a/git-commit-script +++ b/git-commit-script @@ -16,7 +16,7 @@ do -m) shift case "$#" in 0) usage ;; - *) use_commit=`git-rev-parse "$1"` || + *) use_commit=`git-rev-parse --verify "$1"` || exit ;; esac ;; |