Answers for "how to add previously ignored files in git"

1

git showing ignored file modified

git update-index --assume-unchanged <file>
git rm --cached <file>
Posted by: Guest on June-08-2021
0

git remove ignored files

git rm --cached <file>
git rm -r --cached <folder>
Posted by: Guest on September-14-2021

Code answers related to "how to add previously ignored files in git"

Browse Popular Code Answers by Language