suchen

Heim  >  Fragen und Antworten  >  Hauptteil

用git做版本管理,对于经常修改的文件怎么办

用git做ios工程的版本管理,project文件经常会变,所以push或者pull的时候就会冲突,而且经常冲突。

git pull的时候能不能指定文件或者忽略project文件呢?

或者有什么其他方案呢?

PHPzPHPz2801 Tage vor692

Antworte allen(4)Ich werde antworten

  • ringa_lee

    ringa_lee2017-04-21 10:59:30

    总结了github上几个XCode项目.gitignore,我们现在的项目目前的.gitignore如下:

    # files created by Xcode 3 or older
    *.pbxuser
    *.mode1
    *.mode1v3
    *.mode2v3
    *.perspectivev3
    *.xcclassmodel/
    # files created by Xcode 4
    xcuserdata/
    # build products
    *.build/
    build/
    DerivedData/
    # Misc
    .svn
    .DS_Store

    Antwort
    0
  • 天蓬老师

    天蓬老师2017-04-21 10:59:30

    .gitignore 里可以指定忽略

    Antwort
    0
  • 阿神

    阿神2017-04-21 10:59:30

    补充一个github上面的gitgnore的集合。

    https://github.com/github/gitignore

    Antwort
    0
  • PHPz

    PHPz2017-04-21 10:59:30

    有些文件可以不添加到git项目中。

    Antwort
    0
  • StornierenAntwort