📜  reinit gitignore - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:32.811000             🧑  作者: Mango

代码示例1
# rm all files
git rm -r --cached .
# add all files as per new .gitignore
git add .
# now, commit for new .gitignore to apply
git commit -m ".gitignore is now working"