diff options
| author | Brian Jordan | 2012-03-27 19:00:05 -0400 |
|---|---|---|
| committer | Brian Jordan | 2012-03-27 19:00:05 -0400 |
| commit | 62f14063fbf026a0a048b160ce93c91fa57bc5bc (patch) | |
| tree | cfdf0b8085e327699e9e454438b6a0c21a375203 | |
| parent | 176ea2eef31deaa3a3646807522c5580ac4df30a (diff) | |
| download | Video-Tuneup-62f14063fbf026a0a048b160ce93c91fa57bc5bc.tar.bz2 | |
add git prefs
| -rw-r--r-- | .gitattributes | 1 | ||||
| -rw-r--r-- | .gitignore | 21 | ||||
| -rw-r--r-- | Video Tuneup.xcodeproj/project.pbxproj | 12 |
3 files changed, 28 insertions, 6 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a84fc01 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +.pbxproj -merge -crlf -diff diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7092fd1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# Adapted from http://www.codedifferent.com/2011/05/01/coding-gitignore-for-xcode-4/ + +# 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 +xcuserdata diff --git a/Video Tuneup.xcodeproj/project.pbxproj b/Video Tuneup.xcodeproj/project.pbxproj index 248335b..3538124 100644 --- a/Video Tuneup.xcodeproj/project.pbxproj +++ b/Video Tuneup.xcodeproj/project.pbxproj @@ -38,21 +38,21 @@ D36CCD3515227D06003CCAFC /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; D36CCD3715227D06003CCAFC /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; D36CCD3915227D06003CCAFC /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; - D36CCD3D15227D06003CCAFC /* Video Tuneup-Info.plist */ = {isa = PBXFileReference; path = "Video Tuneup-Info.plist"; sourceTree = "<group>"; }; + D36CCD3D15227D06003CCAFC /* Video Tuneup-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Video Tuneup-Info.plist"; sourceTree = "<group>"; }; D36CCD3F15227D06003CCAFC /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; }; D36CCD4115227D06003CCAFC /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; }; - D36CCD4315227D06003CCAFC /* Video Tuneup-Prefix.pch */ = {isa = PBXFileReference; path = "Video Tuneup-Prefix.pch"; sourceTree = "<group>"; }; - D36CCD4415227D06003CCAFC /* AppDelegate.h */ = {isa = PBXFileReference; path = AppDelegate.h; sourceTree = "<group>"; }; + D36CCD4315227D06003CCAFC /* Video Tuneup-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Video Tuneup-Prefix.pch"; sourceTree = "<group>"; }; + D36CCD4415227D06003CCAFC /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; }; D36CCD4515227D06003CCAFC /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; }; - D36CCD4715227D06003CCAFC /* ViewController.h */ = {isa = PBXFileReference; path = ViewController.h; sourceTree = "<group>"; }; + D36CCD4715227D06003CCAFC /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; }; D36CCD4815227D06003CCAFC /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; }; D36CCD4B15227D06003CCAFC /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ViewController_iPhone.xib; sourceTree = "<group>"; }; D36CCD4E15227D06003CCAFC /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ViewController_iPad.xib; sourceTree = "<group>"; }; D36CCD5515227D06003CCAFC /* Video TuneupTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Video TuneupTests.octest"; sourceTree = BUILT_PRODUCTS_DIR; }; D36CCD5615227D06003CCAFC /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; }; - D36CCD5E15227D06003CCAFC /* Video TuneupTests-Info.plist */ = {isa = PBXFileReference; path = "Video TuneupTests-Info.plist"; sourceTree = "<group>"; }; + D36CCD5E15227D06003CCAFC /* Video TuneupTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Video TuneupTests-Info.plist"; sourceTree = "<group>"; }; D36CCD6015227D06003CCAFC /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; }; - D36CCD6215227D06003CCAFC /* Video_TuneupTests.h */ = {isa = PBXFileReference; path = Video_TuneupTests.h; sourceTree = "<group>"; }; + D36CCD6215227D06003CCAFC /* Video_TuneupTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Video_TuneupTests.h; sourceTree = "<group>"; }; D36CCD6315227D06003CCAFC /* Video_TuneupTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Video_TuneupTests.m; sourceTree = "<group>"; }; /* End PBXFileReference section */ |
