Mercurial .hgignore for xcode/cocoa

Here’s my Mercurial .hgignore template for xcode/cocoa projects.

syntax: glob
 
.DS_Store
 
# Backup files left behind by the Emacs editor.
*~
 
# Lock files used by the Emacs editor.
.\#*
 
# Temporary files used by the vim editor.
.*.swp
 
# Temporary files used by TestMate
._*
 
# build directories
**/build/*
build/*
 
# XCode user data
**.pbxuser
**.mode?v?
**.perspectivev?
 
# documentation
**.docset/*
 
# for those crazies using svn and hg at the same time
*.svn*

Tags:

Comments are closed.