summaryrefslogtreecommitdiff
path: root/git-cherry
diff options
context:
space:
mode:
Diffstat (limited to 'git-cherry')
-rwxr-xr-xgit-cherry8
1 files changed, 4 insertions, 4 deletions
diff --git a/git-cherry b/git-cherry
index e2a1a2db9f..f3bfbf3a4e 100755
--- a/git-cherry
+++ b/git-cherry
@@ -28,11 +28,11 @@ The output is intended to be used as:
'
case "$#" in
-1) linus=`git-rev-parse "$1"` &&
- junio=`git-rev-parse HEAD` || exit
+1) linus=`git-rev-parse --verify "$1"` &&
+ junio=`git-rev-parse --verify HEAD` || exit
;;
-2) linus=`git-rev-parse "$1"` &&
- junio=`git-rev-parse "$2"` || exit
+2) linus=`git-rev-parse --verify "$1"` &&
+ junio=`git-rev-parse --verify "$2"` || exit
;;
*) echo >&2 "$usage"; exit 1 ;;
esac