Answers for "file not being exlcuded even in gitignore"

0

file not being exlcuded even in gitignore

# Remove the files from the index (not the actual files in the working copy)
$ git rm -r --cached .

# Add these removals to the Staging Area...
$ git add .

# ...and commit them!
$ git commit -m "Clean up ignored files"
Posted by: Guest on March-11-2021

Code answers related to "file not being exlcuded even in gitignore"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language