Xcode 5 Git本地存储库位置

时间:2013-10-02 20:41:17

标签: xcode git location repository

我无法在工作目录中找到.git /文件夹。我能够在xcode中执行源代码控制操作,并能够查看提交的历史记录。

.git文件夹在哪里?

这是在Xcode5中。

3 个答案:

答案 0 :(得分:3)

RyPeck在上面的评论中提供了正确答案。

隐藏文件是罪魁祸首。

终端中的以下命令负责:

defaults write com.apple.finder AppleShowAllFiles -bool true

答案 1 :(得分:1)

通过查找目录树中可以运行'git status'的距离来查找git repo的根目录。从那里,它应该是一个隐藏的文件夹。

答案 2 :(得分:1)

完整的答案是设置AppleShowAllFiles然后重新启动Finder,因为删除了重新启动'在后来的OSX中从Dock命令。

启动板运行终端或使用 Spotlight 搜索,然后将其粘贴以关闭隐藏文件并重新启动查找程序(重新启动所有窗口) )

defaults write com.apple.finder AppleShowAllFiles -bool true
killall Finder /System/Library/CoreServices/Finder.app

然后将其粘贴以隐藏它们。

defaults write com.apple.finder AppleShowAllFiles -bool false
killall Finder /System/Library/CoreServices/Finder.app

然后,git存储库应该在Finder中可见,与.xcodeproj文件处于同一级别。