Code

git-grep: don't use sscanf
[git.git] / git-reset.sh
index 91c7e6e664eeac0a130044d3d026ccbbfa00f3b3..fee6d98d9cba708828c36a2d2a29dbec8662c36b 100755 (executable)
@@ -43,7 +43,7 @@ case "$1" in --) shift ;; esac
 # affecting the working tree nor HEAD.
 if test $# != 0
 then
-       test "$reset_type" == "--mixed" ||
+       test "$reset_type" = "--mixed" ||
                die "Cannot do partial $reset_type reset."
 
        git-diff-index --cached $rev -- "$@" |
@@ -87,7 +87,7 @@ update_ref_status=$?
 case "$reset_type" in
 --hard )
        test $update_ref_status = 0 && {
-               echo -n "HEAD is now at "
+               printf "HEAD is now at "
                GIT_PAGER= git log --max-count=1 --pretty=oneline \
                        --abbrev-commit HEAD
        }