美文网首页
git提交代码隐藏UserInterfaceState.xcus

git提交代码隐藏UserInterfaceState.xcus

作者: anny_4243 | 来源:发表于2022-11-09 10:04 被阅读0次

使用git提交代码时,每次提交都会出现UserInterfaceState.xcuserstate这个文件,实际上提交这个文件没什么用,即使什么代码都没改也会自动出现,会很烦,所以需要想办法让这个文件不再出现。

解决办法:
1.打开终端
2.cd 到项目文件夹所在目录
3.输入命令

git rm --cache xxx/UserInterfaceState.xcuserstate //文件所在目录
git commit -m "xxx" //xxx为提交的备注

相关文章

  • git提交代码隐藏UserInterfaceState.xcus

    使用git提交代码时,每次提交都会出现UserInterfaceState.xcuserstate这个文件,实际上...

  • 使用idea解决代码冲突

    1、 写完代码先pull代码,不要提交,如果有冲突,会报下面的错误。 2、 执行git stash,隐藏本地修改,...

  • Git 提交代码流程

    git提交代码流程 git pull———>修改代码———>git commit————>git pull——...

  • git 代码合并

    git 代码合并 git status 查看下当前代码状态,有需要提交的就提交,没用需要提交的就保持原样 git ...

  • git 命令 提交更新代码

    //提交代码 1,git st//查看状态 2,git ci -a -m”描述”//提交代码 3,git co d...

  • git 常用的命令

    git status 检测状态 git add . 提交的代码显示 git commit -m "备注" 提交...

  • 日常用的git提交代码的方法

    日常用的git提交代码的方法 一、初始化本地仓库,提交代码,提交到远程git仓库 1、初始化代码仓库 git in...

  • git常用命令之提交

    git里面的提交代码和svn的提交代码有很大的区别,git的提交是把代码提交到本的仓储区,只有push之后,代码才...

  • 工作常用小技巧

    git命令 分支下提交个人代码 git add . (提交当前目录下代码) git commit -m 用户名 ...

  • git常用命令,个人笔记

    项目开发中,管理代码 1.提交代码 git add . //提交所有文件 git commit -m "此处...

网友评论

      本文标题:git提交代码隐藏UserInterfaceState.xcus

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