I deleted a bunch of files / directories from a git repository using rm, the Finder, etc.

I'm looking for a git command that'll record these to the index as marked for removal. (As if I had called git rm on them.)

I understand git add -u will do this, along with a bunch of other things. I'd like my command to exclusively handle removals.

link|improve this question

71% accept rate
feedback

3 Answers

up vote 11 down vote accepted

Without spaces in filenames:

$ git rm `git ls-files -d`

More robust:

$ git ls-files -z -d | xargs -0 git rm
link|improve this answer
1  
Note that it needs to be run from your repo's top-level directory. – Greg Bacon Dec 6 '09 at 22:04
1  
I've added the --no-run-if-empty option to xargs so that it doesn't throw an error when there are no deleted files: git ls-files -z -d | xargs -0 --no-run-if-empty git rm – kikito Jun 3 '11 at 15:57
feedback

Take a look what Jonio C Hamano wrote in "Re: [PATCH 1/2] Documentation: 'git add -A' can remove files" post at git mailing list, namely that this question looks like XY problem (you are asking about assumed solution Y to the problem, instead about the problem X itself). The solution to problem (if it is really "XY problem" situation) might be:

  • git commit -a, which would automatically pick up deletions, committing current state of tracked files in working directory

  • git add -A, which would add not ignored untracked files and remove no longer existing files, e.g. if you want to create commit from sideways update of working directory, e.g. unpacking a snapshot or result of rsync.

Nevertheless if what you ask is a problem (and not solution), then as you can see from other answers there are tools in place to do it.

link|improve this answer
feedback

Charles Bailey's answer nudged me towards this, but I still welcome something shorter.

$ git diff --name-only --diff-filter=D | xargs git rm
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.