3 USAGE
='[--mixed | --soft | --hard] [<commit-ish>]'
6 tmp
=${GIT_DIR}/reset.$$
7 trap 'rm -f $tmp-*' 0 1 2 3 15
12 --mixed |
--soft |
--hard)
22 1) rev=$
(git-rev-parse
--verify "$1") ||
exit ;;
25 rev=$
(git-rev-parse
--verify $rev^
0) ||
exit
27 # We need to remember the set of paths that _could_ be left
28 # behind before a hard reset, so that we can remove them.
29 if test "$reset_type" = "--hard"
34 # Soft reset does not touch the index file nor the working tree
35 # at all, but requires them in a good order. Other resets reset
36 # the index file to the tree object we are switching to.
37 if test "$reset_type" = "--soft"
39 if test -f "$GIT_DIR/MERGE_HEAD" ||
40 test "" != "$(git-ls-files --unmerged)"
42 die
"Cannot do a soft reset in the middle of a merge."
45 git-read-tree
--reset $update "$rev" ||
exit
48 # Any resets update HEAD to the head being switched to.
49 if orig
=$
(git-rev-parse
--verify HEAD
2>/dev
/null
)
51 echo "$orig" >"$GIT_DIR/ORIG_HEAD"
53 rm -f "$GIT_DIR/ORIG_HEAD"
55 git-update-ref
-m "reset $reset_type $*" HEAD
"$rev"
60 ;; # Nothing else to do
62 ;; # Nothing else to do
64 # Report what has not been updated.
65 git-update-index
--refresh
69 rm -f "$GIT_DIR/MERGE_HEAD" "$GIT_DIR/rr-cache/MERGE_RR" "$GIT_DIR/SQUASH_MSG"
71 exit $update_ref_status