Answers for "how to unignore a file gitignore"

0

remove gitignore files

git ls-files --ignored --exclude-standard -z | xargs -0 git rm --cached
git commit -am "Remove ignored files"


// answer from: thSoft
Posted by: Guest on June-26-2020
10

how to put files into gitignore

$ echo debug.log >> .gitignore
$ git rm --cached debug.log
rm 'debug.log'
$ git commit -m "Start ignoring debug.log"
Posted by: Guest on June-03-2020

Code answers related to "how to unignore a file gitignore"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language