mikezang macrumors 6502a Original poster May 22, 2010 939 41 Tokyo, Japan Jan 6, 2013 #1 I use a general .gitignore file to avoid useless files, but I am not sure how to ignore some files relevant to project itself in iOS6, there is no such files before iOS6, does anyone help me?
I use a general .gitignore file to avoid useless files, but I am not sure how to ignore some files relevant to project itself in iOS6, there is no such files before iOS6, does anyone help me?
mikezang macrumors 6502a Original poster May 22, 2010 939 41 Tokyo, Japan Jan 7, 2013 #2 Here is my .gitignore file Code: # hidden/temp files .DS_Store *.swp *~.nib *.a *.old *.new *.md # Build dir build/ # Subversion dir .svn/ # Xcode project files except for the project file *.xcodeproj/* *.xcodeproj/*/ !*.xcodeproj/project.pbxproj # Windows image thumbnail file Thumbs.db # User-specific project settings *.mode1v3 *.mode2v3 and here is what I found files about Xcode project: Attachments Screen Shot 2013-01-07 at 19.05.07.jpg 25.3 KB · Views: 119
Here is my .gitignore file Code: # hidden/temp files .DS_Store *.swp *~.nib *.a *.old *.new *.md # Build dir build/ # Subversion dir .svn/ # Xcode project files except for the project file *.xcodeproj/* *.xcodeproj/*/ !*.xcodeproj/project.pbxproj # Windows image thumbnail file Thumbs.db # User-specific project settings *.mode1v3 *.mode2v3 and here is what I found files about Xcode project: