美文网首页
(.DS_Store)避免多人提交代码到GitHub上起冲突

(.DS_Store)避免多人提交代码到GitHub上起冲突

作者: 程旭媛 | 来源:发表于2015-12-03 14:50 被阅读15139次

    https://www.gitignore.io/gitignore的生成网址

    在多人合作的项目里,git pull origin master执行完之后出现以下问题:

    Auto-merging .DS_Store CONFLICT (content): Merge conflict in .DS_Store Automatic merge failed;

    原因是.DS_Store这样的文件在项目提交时需要忽略掉。

    忽略步骤:

    1、touch .gitignore 创建一个文件


    open -e .gitignore 把配置内容粘贴上传,然后保存。(内容是https://www.gitignore.io/gitignore网站里输入 Mac os  objective-c cocoapods xcode即可以获取到)

    git add .

    git commit

    然后要全局使用这个 .gitignore 

    $ git config --global core.excludesfile ~/.gitignore

    后面跟的是 .gitignore文件位置。你可以更改。但是那个路径下 必须存在那个配置文件。

    2、手动或者命令行删除完  .DS_Store之后,执行一下命令:


    rm .DS_Store

    git add .

    git commit -a -m “更改内容”或者git commit -am是前者的简写

    git pull origin master

    git push origin master

    执行完之后 其他同事需要合并我的代码,如果同事有内容提交,执行一下命令:

    git add .

    git commit -a -m “修改的内容"

    git pull origin master

    git merge origin/master执行此命令之后出现以下错误:

    error: merge is not possible because you have unmerged files.

    hint: Fix them up in the work tree, and then use 'git add/rm '

    hint: as appropriate to mark resolution and make a commit.

    fatal: Exiting because of an unresolved conflict.

    出现此错误后重新执行

    git add .

    git commit -a -m “ssss”

    git pull  origin master

    git merge origin/master

    然后再执行下面

    git push origin master

    至此GitHub上就不会再有.DS_Store了成功的表现是:本地有.DS_Store和gitignore文件就可以了,GitHub上有.gitignore 没有 .DS_Store文件。

    相关文章

      网友评论

          本文标题:(.DS_Store)避免多人提交代码到GitHub上起冲突

          本文链接:https://www.haomeiwen.com/subject/rslshttx.html