0
Finally, Apple introduced native support in Xcode 4. Git is now the standard version control system you can use within Xcode. The Apple engineers did a great job in integrating Git into Xcode 4 … but there is room for improvements
Tools like still are essential for me to keep track of all the branches in the Git-repository.
.gitignore for Xcode 4
Finally, Apple introduced native support in Xcode 4. Git is now the standard version control system you can use within Xcode. The Apple engineers did a great job in integrating Git into Xcode 4 … but there is room for improvements If you want to use Git as the version control system for your Xcode projects, you definitely should use a specific .gitignore file to keep your Git-repository clean.That’s the content of a Xcode4 optimized .gitignore text-file:
- # Exclude the build directory
- build/*
- # Exclude temp nibs and swap files
- *~.nib
- *.swp
- # Exclude OS X folder attributes
- .DS_Store
- # Exclude user-specific XCode 3 and 4 files
- *.mode1
- *.mode1v3
- *.mode2v3
- *.perspective
- *.perspectivev3
- *.pbxuser
- *.xcworkspace
- *.xcuserstate
- xcuserdata
# Exclude the build directory build/* # Exclude temp nibs and swap files *~.nib *.swp # Exclude OS X folder attributes .DS_Store # Exclude user-specific XCode 3 and 4 files *.mode1 *.mode1v3 *.mode2v3 *.perspective *.perspectivev3 *.pbxuser *.xcworkspace *.xcuserstate xcuserdata
one can also specify a global gitignore file in ~/.gitconfig:

Recent Comments