比如说我的项目有两个分支
$ git branch
master
* dev
在 dev
分支下面有两个3个文件夹是 ignore 的: bower_components/
, node_modules/
, dist/
.
现在我在 dev
下面提交之后, 切换到 master
分支去,结果在 master
分支下也可以看到 bower_components/
, node_modules/
, dist/
这些目录和里面的文件,是我操作不对吗?如何解决呢?
高洛峰2017-05-02 09:30:50
如果这几个文件出现在版本管理中,那是因为
.gitignore 文件是在版本控制里的
dev
分支下的 .gitignore 记录了你要忽略的文件
但是在master
分支下, .gitigonre 还没记录下你要忽略的内容
解决方法(更新master的.gitignore)
方法1. merge dev -> master
方法2. add ignore files in .gitignore at master branch
漂亮男人2017-05-02 09:30:50
你在一个分支修改了代码并提交,对其他分支是并无影响的。同理,你只是在 dev 分支下忽略了文件,对其他分支来说是并无影响的,所以你要做的是去其他分支重复做一遍忽略的动作,或者把 dev 分支下的修改 merge 到其他分支去。