Answers for "git enable cache"

17

git clean cache

$ git rm -r --cached .
Posted by: Guest on May-25-2020
2

git ignore cache

# Remove specific file from git cache
git rm --cached filename

# Remove all files from git cache
git rm -r --cached .
git add .
git commit -m ".gitignore is now working"
Posted by: Guest on August-19-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language