Bash script to remove deleted files from git

Posted by – March 7, 2008

for i in ` git st | grep deleted | awk ‘{print $3}’ ` ; do git rm $i; done

0 Comments on Bash script to remove deleted files from git

Respond | Trackback

Respond

Comments

Comments