6 git-reset - Reset current HEAD to the specified state.
10 'git-reset' [--mixed | --soft | --hard] [<commit-ish>]
14 Sets the current head to the specified commit and optionally resets the
15 index and working tree to match.
20 Like --soft but reports what has not been updated. This is the
24 Does not touch the index file nor the working tree at all, but
25 requires them in a good order.
28 Matches the working tree and index to that of the tree being
32 Commit to make the current HEAD.
36 Written by Junio C Hamano <junkio@cox.net> and Linus Torvalds <torvalds@osdl.org>
40 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
44 Part of the gitlink:git[7] suite