简体   繁体   中英

git revert --no-commit without staging

Usually the command git revert automatically creates some commits with commit log messages stating which commits were reverted.

To avoid automatic commit there's the option -n (or --no-commit ).

But after this command, the reverted files are in the staged area. I can unstage them by using the command git reset HEAD .

Is there a direct way to revert a commit without committing and staging?

In other words: is there a direct command to revert a commit applying the changes only to the working directory, without touching the index?

There is no single command for it. As you already noted, you can combine git revert -n with git reset to get the reversion undone in the index.

Besides that method, you can use git apply -R to "reverse apply" a patch, and you can turn a commit into a patch with git show , so:

$ git show <rev> | git apply -R

has the same effect, with one important (but subtle) difference. Let me quote from the git revert documentation and add my own emphasis:

-n, --no-commit
Usually the command automatically creates some commits with commit log messages stating which commits were reverted. This flag applies the changes necessary to revert the named commits to your working tree and the index, but does not make the commits. In addition, when this option is used, your index does not have to match the HEAD commit. The revert is done against the beginning state of your index.

In other words, git revert -n operates in, and on, the index , with a side effect of updating your work tree. The git apply command operates (by default anyway) on the work-tree only, and in fact can be used outside a git repository.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM