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

Possible Duplicate:
Removing multiple files from a Git repo that have already been deleted from disk

If I delete some files from the disk they come up as deleted like so in the Git repo:

C:\git\bc>git status
# On branch tracking2
# Changed but not updated:
#   (use "git add/rm <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#       deleted:    test.txt
#

Is there a way to do a single command "just delete these files from the repository"?
Similar to git add . which would add all new and modified files to the stage.

I use Visual Studio and Windows explorer to work with my source tree and at some point I just delete a whole bunch of files. I then find it a pain to call git rm as the files are no longer around and there is no command line intellisense to help me type it in.

I just want a command that deletes all files from git that are also deleted from the disk.

share|improve this question
5  
Why aren't you calling git rm to delete the file? – seth Sep 10 '09 at 0:14
related: stackoverflow.com/questions/1856654/… – kch Dec 6 '09 at 21:35
14  
+1 for asking the same question I was about to ask. – WinWin Jan 13 '12 at 22:08
6  
WARNING: The accepted answer's command stages all changes. See my answer for a solution to stage only the deleted files. – Saeb Nov 12 '12 at 20:57
1  
@seth, it's not always convenient to use git rm, the removal could have been from a separate tool, IDE or file manager. Visual Studio for one can be a pain when removing/renaming files. – Brett Ryan Feb 25 at 3:06

marked as duplicate by Kev Oct 1 '12 at 22:22

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

6 Answers

up vote 959 down vote accepted

Try this:

$ git add -u

This tells git to automatically stage tracked files -- including deleting the previously tracked files.


Warning, starting git 2.0 (mid 2013), this will stage files on the all working tree.
If you want to stage file only under your current path with that working tree, then you need to use

$ git add -u .

See "Difference of “git add -A” and “git add .".

share|improve this answer
2  
Brilliant, that's exactly what I need. – Igor Zevaka Sep 10 '09 at 0:15
50  
Note that this will add all changed, tracked files--deleted and updated. – Ian Hunter Aug 11 '11 at 17:55
7  
+1 for a perfect, concise answer. – WinWin Jan 13 '12 at 22:08
12  
@beanland, you need only provide the path to the specific file you want to modify if you don't want it to get them all. e.g. git add -u [path] – Paul Prewett Apr 10 '12 at 21:35
13  
also git add -u folder/ to run this operation in a folder – iillllllllllllllllllllllllllii Dec 12 '12 at 18:03
show 1 more comment

If you simply run:

git add -u

git will update its index to know that the files that you've deleted should actually be part of the next commit. Then you can run "git commit" to check in that change.

Or, if you run:

git commit -a

It will automatically take these changes (and any others) and commit them.

Update: If you only want to add deleted files, try:

git ls-files --deleted -z | xargs -0 git rm
git commit
share|improve this answer
Right, git commit -a will do what I want, except in some cases I have files that I don't want to commit, so i want to prepare the commit manually. – Igor Zevaka Sep 10 '09 at 0:22
2  
commit -a essentially does an "add -u" first; it will update the index with any changes to known files (be they deletions or simple changes). You can of course be more specific and add/rm only the files you want. git.or.cz/gitwiki/… may be helpful. – Emil Sit Sep 10 '09 at 1:06
2  
The commandset beneath the "Update: .." worked like a charm. Thanks! – Jay Taylor Sep 2 '11 at 16:46
7  
Thank you so much for 'git ls-files --deleted | xargs git rm' ! – mit Mar 31 '12 at 20:52
9  
"git ls-files --deleted | xargs git rm" is the correct answer! Thanks! – reto Jan 3 at 10:15
show 3 more comments

To stage only the deleted files:

for x in `git status | grep deleted | awk '{print $3}'`; do git rm $x; done

Which you can alias for convenient later use.

share|improve this answer
1  
Thanks for the tip. – y5h Feb 23 '12 at 19:29
11  
Learn xargs :-) – Kos Aug 22 '12 at 6:45
1  
@Saeb Understand about the queue, but xargs is about 15 minutes to master. – Eric Wilson Sep 19 '12 at 18:41
4  
git status | awk '/deleted/ {print $3}' | xargs git rm would be a shorter way to do that. grep | awk... Just Say No. – Mark Reed Feb 19 at 3:06
2  
git rm $(git ls-files --deleted) isn't this more convenient ( copied from this). – Hotschke Mar 26 at 10:13
show 2 more comments

git rm test.txt

Before or after you deleted the actual file.

share|improve this answer
3  
While it'll work, I often find myself deleting a ton of files through just rm and regretting it later. – carl Sep 10 '09 at 0:15
This is a lesser solution than the one accepted – khebbie Jun 28 '12 at 13:07
4  
Why is this worse than doing git add -u? It seems like it'd be safer to add the specific files that were deleted to the commit, rather than adding ALL changes. – Ian Dunn Aug 7 '12 at 17:33
2  
actually this should be the best answer according to the question's last line "I just want a command that deletes all files from git that are also deleted from the disk." – Ramsharan Mar 10 at 3:36
1  
@Ramsharan no, because it doesnt do that at all. This deletes a single file; the OP SPECIFICALLY requested "all" deleted files. – Adam Apr 21 at 20:16
show 3 more comments

I needed the same and used git gui "stage changed" button. it also adds all.

And after "stage changed" I made "commit" ...

so my working directory is clean again.

share|improve this answer
git add .    
git commit -a -m "Custom Message"

Note this will commit everything, including deleted files. But at least for me, it's what I do most of the time...

share|improve this answer
15  
git add . does not mark deleted files for deletion from git. – Igor Zevaka Sep 10 '09 at 0:20
Well, my hint is for commiting everything. You could jump this part... – Samuel Carrijo Sep 10 '09 at 0:26

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