X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=Documentation%2Fgit-reset-script.txt;h=18bd9e93d5b9e1de8ad33c1aee91944a0161b292;hb=99977bd5fdeabbd0608a70e9411c243007ec4ea2;hp=2c12f59e96970f795f904ed2635a881f0c222e80;hpb=58eaf287f1b25f6427b06bd72d8e555615828aeb;p=git.git diff --git a/Documentation/git-reset-script.txt b/Documentation/git-reset-script.txt index 2c12f59e..18bd9e93 100644 --- a/Documentation/git-reset-script.txt +++ b/Documentation/git-reset-script.txt @@ -3,26 +3,33 @@ git-reset-script(1) NAME ---- -git-reset-script - Some git command not yet documented. - +git-reset-script - Reset current HEAD to the specified state. SYNOPSIS -------- -'git-reset-script' [ --option ] ... +'git-reset-script' [--mixed | --soft | --hard] [] DESCRIPTION ----------- -Does something not yet documented. - +Sets the current head to the specified commit and optionally resets the +index and working tree to match. OPTIONS ------- ---option:: - Some option not yet documented. +--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. -...:: - Some argument not yet documented. +--hard:: + Matches the working tree and index to that of the tree being + switched to. +:: + Commit to make the current HEAD. Author ------