/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
for i in `git status | grep deleted | awk '{print $3}'`; do git rm $i; done