Skip to content

Commit 3a634dc

Browse files
Tarmigan Caseboltgitster
authored andcommitted
Add hints to revert documentation about other ways to undo changes
Based on its name, people may read the 'git revert' documentation when they want to undo local changes, especially people who have used other SCM's. 'git revert' may not be what they had in mind, but git provides several other ways to undo changes to files. We can help them by pointing them towards the git commands that do what they might want to do. Cc: Daniel Barkalow <barkalow@iabervon.org> Cc: Lea Wiemann <lewiemann@gmail.com> Signed-off-by: Tarmigan Casebolt <tarmigan+git@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 71f4637 commit 3a634dc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Documentation/git-revert.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ Given one existing commit, revert the change the patch introduces, and record a
1515
new commit that records it. This requires your working tree to be clean (no
1616
modifications from the HEAD commit).
1717

18+
Note: 'git revert' is used to record a new commit to reverse the
19+
effect of an earlier commit (often a faulty one). If you want to
20+
throw away all uncommitted changes in your working directory, you
21+
should see linkgit:git-reset[1], particularly the '--hard' option. If
22+
you want to extract specific files as they were in another commit, you
23+
should see linkgit:git-checkout[1], specifically the 'git checkout
24+
<commit> -- <filename>' syntax. Take care with these alternatives as
25+
both will discard uncommitted changes in your working directory.
26+
1827
OPTIONS
1928
-------
2029
<commit>::

0 commit comments

Comments
 (0)