我的.gitignore包含以下行
build/
而且,我的项目的目录结构看起来像
/myproject
.gitignore
/sub_prj1
/build
/sub_prj2
/build
...
然而,在git push之后,所有 sub_prj1 , sub_prj2 ...下的 build 目录都存在于遥控器中。
如何忽略 build 目录?
答案 0 :(得分:0)
根据你的说法
但是在git push之后,所有sub_prj1,sub_prj2 ...下的构建目录都存在于远程
中
我会建议您在当地运行
git rm -- <path>
git status //to confirm you have no any other issue
然后你
git add .
git commit -m "whatever message you choose"
git push
这可以解决您的问题。