美文网首页
iOS git提交时忽略频繁更新的UserInterfaceSt

iOS git提交时忽略频繁更新的UserInterfaceSt

作者: 贝勒老爷 | 来源:发表于2018-08-14 18:56 被阅读88次

    一、 git status

    复制UserInterfaceState.xcuserstate文件文件路径路径

    二、在同 .git目录创建.gitignore文件。在文件中加入如下内容:

    在.git同目录的命令行下

    先创建touch .gitignore,
    打开vim.gitignore,
    粘贴进去,
    保存关闭,
    添加到缓存区,git add .gitignore
    提交git commit -m "添加了.gitignore文件"
    推送git push
    
    *.xcuserstate
         */.DS_Store
         .DS_Store
         project.xcworkspace
         xcuserdata
         UserInterfaceState.xcuserstate
         project.xcworkspace/
         xcuserdata/
         UserInterface.xcuserstate
    
    项目名.xcodeproj/project.xcworkspace/xcuserdata/电脑用户名.xcuserdatad/UserInterfaceState.xcuserstate 
    

    三、退出xcdoe, 打开终端(Terminal),进入项目目录下。

    四、在终端键入

    git rm --cached [YourProjectName].xcodeproj/project.xcworkspace/xcuserdata/[ YourUsername].xcuserdatad/UserInterfaceState.xcuserstate
    

    git rm --cached 你刚git status 复制的路径

    五、在终端键入 git commit -m "Removed file that shouldn't be tracked"

          git clean -f -d(加 上这个好了   2018.3.27 )
    

    六、重新打开Xcode commit, push。

    git commit -m "Removed file that shouldn't be tracked"
    

    还有一个问题是在我公司商户端dev 与 master的合并 master有dev的提交记录 但是用户端的 没有dev的提交记录了 纠结了一上午 试了十几次各种合并 依旧Xcode 没有提交历史记录 码云上面有

    最后折中 在码云上面设置master分支 不为默认分支 不然无法删除 然后通过

    git branch -D master;//删除本地master分支
    git push origin :master;//删除远程master分支
    重新创建新的master分支 从dev把代码拉到master 就可以了

    上传空的文件夹

    有时候我们为了保证项目结构,所以要上传空的文件夹到git , 这时候只需要在git 根目录下执行
    find . -type d -empty -exec touch {}/.gitignore ; 就可以上传空的文件夹 (其实原本是空的文件夹里建立的一个.gitignore)。

    相关文章

      网友评论

          本文标题:iOS git提交时忽略频繁更新的UserInterfaceSt

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