Simple App to help @jaspermayone make it through COMP1050 with a professor who won't use version control.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add .gitignore for Xcode and build artifacts

+46
+46
.gitignore
··· 1 + # Xcode 1 2 build/ 3 + *.pbxuser 4 + !default.pbxuser 5 + *.mode1v3 6 + !default.mode1v3 7 + *.mode2v3 8 + !default.mode2v3 9 + *.perspectivev3 10 + !default.perspectivev3 11 + xcuserdata/ 12 + *.xccheckout 13 + *.moved-aside 14 + DerivedData/ 15 + *.hmap 16 + *.ipa 17 + *.xcuserstate 18 + *.xcworkspace 19 + !default.xcworkspace 20 + 21 + # Build artifacts 22 + ZipMerge.zip 23 + ZipMerge.app 24 + 25 + # macOS 26 + .DS_Store 27 + .AppleDouble 28 + .LSOverride 29 + 30 + # Thumbnails 31 + ._* 32 + 33 + # Files that might appear in the root of a volume 34 + .DocumentRevisions-V100 35 + .fseventsd 36 + .Spotlight-V100 37 + .TemporaryItems 38 + .Trashes 39 + .VolumeIcon.icns 40 + .com.apple.timemachine.donotpresent 41 + 42 + # Directories potentially created on remote AFP share 43 + .AppleDB 44 + .AppleDesktop 45 + Network Trash Folder 46 + Temporary Items 47 + .apdisk