2005-09-08 02:26:23 +02:00
|
|
|
git-reset(1)
|
|
|
|
============
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2005-09-08 02:26:23 +02:00
|
|
|
git-reset - Reset current HEAD to the specified state.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-09-08 02:26:23 +02:00
|
|
|
'git-reset' [--mixed | --soft | --hard] [<commit-ish>]
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-09-07 23:18:51 +02:00
|
|
|
Sets the current head to the specified commit and optionally resets the
|
|
|
|
index and working tree to match.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-09-07 23:18:51 +02:00
|
|
|
--mixed::
|
|
|
|
Like --soft but reports what has not been updated. This is the
|
|
|
|
default action.
|
|
|
|
|
|
|
|
--soft::
|
|
|
|
Does not touch the index file nor the working tree at all, but
|
|
|
|
requires them in a good order.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2005-09-07 23:18:51 +02:00
|
|
|
--hard::
|
|
|
|
Matches the working tree and index to that of the tree being
|
|
|
|
switched to.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2005-09-07 23:18:51 +02:00
|
|
|
<commit-ish>::
|
|
|
|
Commit to make the current HEAD.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Junio C Hamano <junkio@cox.net> and Linus Torvalds <torvalds@osdl.org>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-08-23 10:49:47 +02:00
|
|
|
|