如何将.gitignore文件添加到Xcode项目中

时间:2013-01-25 07:41:12

标签: xcode gitignore

当确保通过版本控制(git)将iPhone项目作为精确副本安装到全新的计算机中时,我才意识到 .gitignore 文件丢失了。在版本控制下添加,但现在想将该文件添加到Xcode项目中,以便于查看和编辑。

使用" Control-click + Add Files to myProject..."弹出菜单,我看不到以.开头的任何文件名(这是一个点)。如何将我的.gitignore文件添加到Xcode项目中?

3 个答案:

答案 0 :(得分:65)

  1. 当显示打开的面板时,按Command-Shift-.将显示隐藏文件,包括.gitignore
  2. 选择.gitignore文件,然后按添加按钮。
  3. 这适用于任何应用,而不仅仅是Xcode。 It's an obscure feature of NSOpenPanel

答案 1 :(得分:2)

此解决方案在XCode 8.0和El Capitan中对我无效。

我打开一个终端并键入:

defaults write com.apple.finder AppleShowAllFiles YES
cd ../PATH_TO_GIT_ROOT 
touch .gitignore

然后重新启动Finder和我的.gitignore文件是可见的。按.gitignore documentation

进行修改

答案 2 :(得分:1)

为了实现 Xcode 12+ 的更新 .gitignore 文件,您应该只向终端写入三行代码。

第一步是为 Gitignore.io 中的 .gitignore 文件设置全局配置

ERROR in /serverConfig.ts: Cannot find name 'process'.

在第二步中,转到您的项目文件夹,然后为您的项目生成 .gitignore 文件。

git config --global alias.ignore '!gi() { curl -L -s https://www.gitignore.io/api/$@ ;}; gi'

最后,提交生成的文件。

git ignore swift,macos >.gitignore 

您可以使用文本编辑器打开 .gitignore 文件并取消注释您不想提交到存储库中的任何文件夹文件。(例如 Pods/)