Answers for "how to delete file from git command"

7

how to delete file from git command

git rm file1.txt
git commit -m "remove file1.txt"
Posted by: Guest on August-17-2020
1

how to delete file from git command

git rm --cached file1.txt
git commit -m "remove file1.txt"
Posted by: Guest on August-17-2020

Code answers related to "how to delete file from git command"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language