Answers for "delete file from git repository"

1

removing git from files

find . | grep .git | xargs rm -rf
Posted by: Guest on July-03-2021
0

git remove file from repository

git filter-branch --index-filter "git rm -rf --cached --ignore-unmatch path_to_file" HEAD
Posted by: Guest on October-19-2021

Code answers related to "delete file from git repository"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language