使用 SourceTree 丢失我的 .gitignore 文件

Losing my .gitignore file with SourceTree

我是 SourceTree 用户。但是今天我在 Mac 上安装了 GitHub 客户端(为了 fork 一个 GitHub 项目)。它在我维护的存储库中造成了混乱。

我使用并在我的 SourceTree 应用程序中注册的所有本地存储库现在都将 .DS_STORE 文件显示为要包含的文件。

发生了什么事?我该如何解决?

这是我的用户目录中的 .gitignore_global 文件:

#####
# OS X temporary files that should never be committed
.DS_Store
*.swp
*.lock
profile

####
# Xcode temporary files that should never be committed
*~.nib

####
# Objective-C/Swift specific
*.hmap
*.ipa

####
# Xcode build files
DerivedData/
build/
Builds/

#####
# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups)
*.pbxuser
*.mode1v3
*.mode2v3
*.perspectivev3
!default.pbxuser
!default.mode1v3
!default.mode2v3
!default.perspectivev3

####
# Xcode 4
xcuserdata
!xcschemes
# Xcode 4
*.moved-aside

####
# XCode 4 workspaces - more detailed
!xcshareddata
!default.xcworkspace
*.xcworkspacedata


####
# Xcode 5
*.xccheckout
*.xcuserstate

####
# Xcode 7
*.xcscmblueprint

####
# AppCode
.idea/

####
# Other Xcode files
profile
*.hmap
*.ipa

####
# CocoaPods
# Pods/

####
# Carthage
Carthage/Build

这也是我的用户目录中的 .hgignore_global 文件:

syntax: glob

*~
.DS_Store

PS:奇怪的是,并不是所有的回购都会发生这种情况(但假设是其中的 75%)

问题消失得和出现时一样突然...