Undo Add Files in Git

时间:2016-10-20 19:24:15

标签: git git-commit git-reset git-add git-stage

I had a bunch of files in the directory in git that weren't tracked. I made the mistake of doing git add . then committing and pushing the changes. How can I get back to where the files that were untracked before that commit are untracked again, but still in the directory (git reset --hard deleted all the files, not good for me, instead of untracking them again). I have my many files in different locations that need to be untracked, so git reset <FILE> won't work for me.

2 个答案:

答案 0 :(得分:1)

$ git commit -m "Something terribly misguided"              (1)
$ git reset HEAD~                                           (2)
<< edit files as necessary >>                               (3)
$ git add ...                                               (4)
$ git commit -c ORIG_HEAD 
  1. This is what you want to undo
  2. This leaves your working tree (the state of your files on disk) unchanged but undoes the commit and leaves the changes you committed unstaged (so they'll appear as "Changes not staged for commit" in git status and you'll need to add them again before committing). If you only want to add more changes to the previous commit, or change the commit message1, you could use git reset --soft HEAD~ instead, which is like git reset HEAD~ but leaves your existing changes staged.
  3. Make corrections to working tree files.
  4. git add anything that you want to include in your new commit.
  5. Commit the changes, reusing the old commit message. reset copied the old head to .git/ORIG_HEAD; commit with -c ORIG_HEAD will open an editor, which initially contains the log message from the old commit and allows you to edit it. If you do not need to edit the message, you could use the -C option.

Source: How to undo last commit(s) in Git?

答案 1 :(得分:1)

First, you should revert the last commit and return all the files back to the staging area by :

git reset --soft HEAD~1

This will not delete any files and it's safe.

Then, you can remove all the files that are added to the staging area by :

git reset

Now if you run the git status, you can see that all the files are unstaged.

You can then git add the only files you want.