gitignore文件怎么导入eclipse中

gitignore文件怎么导入eclipse中,第1张

eclipse 创建的git工程,默认在根目录下就有.gitignore文件

有的eclipse没有显示.gitignore,可以通过设置过滤来显示隐藏文件。

倒三角—->filters—>不要勾选.*resources !

1,打开终端,cd到项目目录下

2,touch .gitignore 创建忽略文件

3,回到工程中shift+command+. 打开隐藏文件,找到.gitignore文件

4,打开.gitignore文件,编辑写入:

*.xcuserstate

project.xcworkspace 

xcuserdata 

UserInterfaceState.xcuserstate 

project.xcworkspace/ 

xcuserdata/ 

UserInterface.xcuserstate

5,保存关闭.gitignore文件

6,退出Xcode,在终端输入 git rm --cached YourProjectName.xcworkspace/xcuserdata/YourUsername.xcuserdatad/UserInterfaceState.xcuserstate

7,在终端输入:git commit -m"Removed file that shouldn't be tracked"

8,重新打开Xcode,git commit ,git push


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11192824.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-14
下一篇 2023-05-14

发表评论

登录后才能评论

评论列表(0条)

保存