【git】更改gitignore文件后更新生效
2023-09-16 本文已影响0人
嗖嗖编程
git rm -r --cached .
git add .
#注意: "update .gitignore" Linux是单引号,windows是双引号
git commit -m "update .gitignore"
git push -u origin master
不刷新,新添加的规则不会生效
git rm -r --cached .
git add .
#注意: "update .gitignore" Linux是单引号,windows是双引号
git commit -m "update .gitignore"
git push -u origin master
不刷新,新添加的规则不会生效