-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
111 lines (86 loc) · 1.5 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# binaries
*.exe
*.o
*.obj
# archives
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# logs
*.log
*.tlog
# VS detritus
*.idb
*.user
*.suo
*.opensdf
*.sdf
*.ilk
*.ipch
*.lastbuildstate
*.unsuccessfulbuild
*.exp
*.manifest
*.manifest.res
*manifest.rc
*.ncb
# misc
*.bak
# Intel VTune Amplifier XE Results
My Amplifier XE Results - SimpleTest/
# igonore CVS folders
CVS/
# VS temporary paths
# todo: ignore anything with /Debug/ in the path, etc.
Debug/
Release/
Holding/
# ignore some usual temporary folders/files
build/
Log.txt
#XCode Stuff.. see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
#####
# OS X temporary files that should never be committed
.DS_Store
*.swp
*.lock
profile
._*
####
# Xcode temporary files that should never be committed
*~.nib
#####
# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups)
*.pbxuser
*.mode1v3
*.mode2v3
*.perspectivev3
# NB: also, whitelist the default ones, some projects need to use these
!default.pbxuser
!default.mode1v3
!default.mode2v3
!default.perspectivev3
####
# Xcode 4 - semi-personal settings, often included in workspaces
#
# You can safely ignore the xcuserdata files - but do NOT ignore the files next to them
#
xcuserdata
####
# XCode 4 workspaces - more detailed
!xcshareddata
####
# Xcode 4 - Deprecated classes
*.moved-aside
####
# Temp linux files
*~
####
# UNKNOWN: recommended by others, but I can't discover what these files are
#
# ...none. Everything is now explained.