projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f468c4
)
git-reset: detect update-ref error and report it.
author
Junio C Hamano
<junkio@cox.net>
Fri, 28 Jul 2006 05:27:44 +0000
(22:27 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Fri, 28 Jul 2006 05:27:44 +0000
(22:27 -0700)
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-reset.sh
patch
|
blob
|
history
diff --git
a/git-reset.sh
b/git-reset.sh
index 5c0224090a252bed3258bbbb127e84e61a874197..36fc8ce25b39682ba256a8d39bf9a393907ef43d 100755
(executable)
--- a/
git-reset.sh
+++ b/
git-reset.sh
@@
-52,7
+52,8
@@
then
else
rm -f "$GIT_DIR/ORIG_HEAD"
fi
-git-update-ref -m "reset $reset_type $@" HEAD "$rev"
+git-update-ref -m "reset $reset_type $*" HEAD "$rev"
+update_ref_status=$?
case "$reset_type" in
--hard )
@@
-66,3
+67,5
@@
case "$reset_type" in
esac
rm -f "$GIT_DIR/MERGE_HEAD" "$GIT_DIR/rr-cache/MERGE_RR" "$GIT_DIR/SQUASH_MSG"
+
+exit $update_ref_status