Friday, August 23, 2013

How can I delete a file from git repo?

Use git rm:
git rm file1.txt
git commit -m "remove file1.txt"
http://stackoverflow.com/questions/2047465/how-can-i-delete-a-file-from-git-repo

No comments:

Post a Comment