/ Published in: Bash
Expand |
Embed | Plain Text
for i in `git status | grep deleted | awk '{print $3}'`; do git rm $i; done
Comments
Subscribe to comments
You need to login to post a comment.
for i in `git status | grep deleted | awk '{print $3}'`; do git rm $i; done
Subscribe to comments
You need to login to post a comment.
hey
i think the problem here is, that if a file is called "deleted" it will also be removed?!