1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
git-undo(1) -- Remove latest commits
====================================
## SYNOPSIS
`git-undo` [-s, --soft, -h, --hard] [<commitcount>]
## DESCRIPTION
Removes the latest commits.
## OPTIONS
--soft or -s
Rolls back the commit(s) but leaves the changes in the staging area.
--hard or -h
This option wipes your commit(s), so that your changes cannot be recovered. Use with care.
To avoid being confused with `--help`, there will be a confirmation when `-h` is specified.
<commitcount>
Number of commits to remove. Defaults to *1*, thus remove the latest commit.
## EXAMPLES
Removes the latest commit.
$ git undo
Removes the latest commit, restoring the staging area.
$ git undo -s
Remove the latest 3 commits:
$ git undo 3
## AUTHOR
Written by Kenneth Reitz <<me@kennethreitz.com>> and Nick Lombard <<github@jigsoft.co.za>>
## REPORTING BUGS
<<https://github.com/tj/git-extras/issues>>
## SEE ALSO
<<https://github.com/tj/git-extras>>
|