Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Git repo that I have deleted four files from using rm (not git rm), and my Git status looks like this:

#    deleted:    file1.txt
#    deleted:    file2.txt
#    deleted:    file3.txt
#    deleted:    file4.txt

How do I remove these files from Git without having to manually go through and add each file like this:

git rm file1 file2 file3 file4

Ideally, I'm looking for something that works in the same way that git add . does, if that's possible.

share|improve this question
Varinder's answer answers this question precisely and concicely. It should be the accepted answer. – vergenzt Jan 31 at 23:00
1  
Note that the accepted answer is changed to Varinder's. – Hotschke Mar 26 at 10:02

15 Answers

up vote 149 down vote accepted
git rm $(git ls-files --deleted)  

might be what you are looking for.. it works for me..

share|improve this answer
U use this too but I forget it each time. – Banago Mar 21 '12 at 21:55
6  
This was exactly what I was looking for, and I believe this answer fits the question well. – Greg Krsak Sep 20 '12 at 21:19
3  
This is exactly the correct answer based on what the OP was asking. It should be accepted answer. – Brendten Eickstaedt Nov 14 '12 at 18:17
2  
Note that this answer won't work on Windows :/ – Phrogz Dec 7 '12 at 22:52
2  
for windows try to add the following alias in your config without the quotes as stated above by Evan Moran 'remove = !git ls-files --deleted -z | xargs -0 git rm' – Pitelk Jan 31 at 14:11
show 4 more comments

You can use

git add -u

To add the deleted files to the staging area, then commit them

git commit -m "Deleted files manually"
share|improve this answer
43  
Please note Google user: It adds the modified tracked files to the staging area as well. – erenon Feb 1 '12 at 13:35
Run this command only if you had just removed the files and want to stage them immediately. – Aryo Dec 17 '12 at 23:54

You're probably looking for -A:

git add -A

this is similar to git add -u, but also adds new files. This is roughly the equivalent of hg's addremove command (although the move detection is automatic).

share|improve this answer
3  
On a quick side note, using -u limits the add to tracked files and -a will include untracked files as well. Just thought I would point out the difference. – spaaarky21 Jun 27 '12 at 17:23

By using git-add with '--all' or '--update' options you may get more than you wanted. New and/or modified files will also be added to the index. I have a bash alias setup for when I want to remove deleted files from git without touching other files:

alias grma='git ls-files --deleted -z | xargs -0 git rm'

All files that have been removed from the file system are added to the index as deleted.

share|improve this answer

Not that it really matters, but I disagree with the chose answer:

git add -u 

... will remove files from the index if the corresponding files in the working tree have been removed, but it will also stage the modified new contents of tracked files.

git rm $(git ls-files --deleted)

... on the other hand will only rm the deleted files that were tracked.

So the latter in my view is the better option.

share|improve this answer

If those are the only changes, you can simply do

git commit -a

to commit all changes. That will include deleted files.

share|improve this answer
1  
Not sure why I got down-voted; git does a good job of identifying files that have been deleted, even if you've not explicitly told it by using git rm. – SpoonMeiser Jul 26 '09 at 13:45
You got down-voted because "-a" is not an acceptable switch, it's "-A". Editing your answer. – Sheharyar Naseer Feb 21 at 19:21
1  
No, "-a" is an acceptable switch, because the command is commit. "-A" is a switch to add but not commit. I see your suggested edit has already been rejected. – SpoonMeiser Feb 23 at 14:40
1  
Oh, a mistake on my part. I'm sorry. :P – Sheharyar Naseer Feb 23 at 21:30

If you want to add it to your .gitconfig do this:

[alias]
  rma = !git ls-files --deleted -z | xargs -0 git rm

Then all you have to do is run:

git rma
share|improve this answer
5  
who cares tubaguy50035. let him answer. – pjammer Jul 26 '12 at 0:23
and from cmd line git config --global alias.rmd '!git ls-files --deleted -z | xargs -0 git rm' – Casey Apr 18 at 12:53
git ls-files --deleted | xargs git rm 

is the best option to add only deleted files.

Here is some other options.

git add .  => Add all (tracked and modified)/new files in the working tree.

git add -u => Add all modified/removed files which are tracked.

git add -A => Add all (tracked and modified)/(tracked and removed)/new files in the working tree.

git commit -a -m "commit message" - Add and commit modified/removed files which are tracked.
share|improve this answer

As mentioned

git add -u

stages the removed files for deletion, BUT ALSO modified files for update.

To unstage the modified files you can do

git reset HEAD <path>

if you like to keep your commits organized and clean.
NOTE: This could also unstage the deleted files, so careful with those wildcards.

share|improve this answer

None of the flags to git-add will only stage removed files; if all you have modified are deleted files, then you're fine, but otherwise, you need to run git-status and parse the output.

Working off of Jeremy's answer, this is what I got:

git status |  sed -s "s/^.*deleted: //" | grep "\(\#\|commit\)" -v | xargs git rm
  1. Get status of files.
  2. For deleted files, isolate the name of the file.
  3. Remove all the lines that start with #s, as well as a status line that had the word "deleted" in it; I don't remember what it was, exactly, and it's not there any longer, so you may have to modify this for different situations. I think grouping of expressions might be a GNU-specific feature, so if you're not using gnutils, you may have to add multiple grep -v lines.
  4. Pass the files to git rm.

Sticking this in a shell alias now...

share|improve this answer

something like

git-status | sed -s "s/^.*deleted: //" | xargs git rm

may do it.

share|improve this answer

The most flexible solution I have found to date is to

git cola

And select all deleted files I want to stage.

(Note I usually do everything commandline in git, but git handles removed files a bit awkward).

share|improve this answer

You can use git add -u <filenames> to stage the deleted files only.

For example, if you deleted the files templates/*.tpl, then use git add -u templates/*.tpl.

The -u is required in order to refer to files that exist in the repository but no longer exist in the working directory. Otherwise, the default of git add is to look for the files in the working directory, and if you specify files you've deleted there, it won't find them.

share|improve this answer
git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch deletefile.name' --prune-empty --tag-name-filter cat -- --all
git commit -m "Removed deletefile.name"
git push origin master --force

Replace deletefile.name with the file to remove. For in-depth detailed explanation go through the nice article https://help.github.com/articles/remove-sensitive-data

share|improve this answer

The following will work, even if you have a lot of files to process:

git ls-files --deleted | xargs git rm

You'll probably also want to commit with a comment.

For details, see: Useful Git Scripts

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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