git_revert

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
git_revert [2019/03/13 10:21] – [Reverting a range of commits] rpjdaygit_revert [2019/03/13 12:49] (current) – [Reverting a range of commits] rpjday
Line 10: Line 10:
 git revert --quit git revert --quit
 git revert --abort git revert --abort
 +</code>
 +
 +===== DESCRIPTION =====
 +
 +Note carefully //lack of traversal//:
 +
 +<code>
 +<commit>...
 +    Commits to revert. For a more complete list of ways to
 +    spell commit names, see gitrevisions(7). Sets of commits
 +    can also be given but no traversal is done by default, see
 +    git-rev-list(1) and its --no-walk option.
 </code> </code>
  
Line 45: Line 57:
 <code> <code>
 $ git revert -n v1.0..v1.1 $ git revert -n v1.0..v1.1
 +</code>
 +
 +==== Reverting one file ====
 +
 +<code>
 +$ git diff HEAD HEAD^ -- <filename> | git apply -
 </code> </code>
  • git_revert.1552472465.txt.gz
  • Last modified: 2019/03/13 10:21
  • by rpjday