Skip to content

Commit 9cbdce4

Browse files
authored
Merge pull request #24 from ESMCI/jgfouca/git_ignore
Add gitignore file for cprnc
2 parents 025932e + 9af50ce commit 9cbdce4

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

.gitignore

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Ignore CMake build files
2+
CMakeFiles/
3+
/CMakeCache.txt
4+
/cmake_install.cmake
5+
/Makefile
6+
/compile_commands.json
7+
8+
# Ignore generated files
9+
*.o
10+
*.obj
11+
*.lo
12+
*.la
13+
*.a
14+
*.lib
15+
*.so
16+
*.so.*
17+
*.dylib
18+
*.dll
19+
*.exe
20+
*.out
21+
*.app
22+
*.i
23+
*.ii
24+
*.s
25+
*.su
26+
*.mod
27+
*.tmod
28+
*.pdb
29+
*.idb
30+
*.pdb
31+
*.ilk
32+
*.nc
33+
34+
# Ignore dependency files
35+
*.d
36+
*.dSYM/
37+
*.dwo
38+
39+
# Ignore editor/IDE files
40+
*.swp
41+
*.swo
42+
*~
43+
*.bak
44+
*.tmp
45+
*.temp
46+
*.log
47+
*.diff
48+
*.patch
49+
*.orig
50+
*.rej
51+
*.old
52+
*.new
53+
*.sublime-workspace
54+
*.sublime-project
55+
*.vscode/
56+
.idea/
57+
*.code-workspace

0 commit comments

Comments
 (0)