-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
37 lines (31 loc) · 848 Bytes
/
.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
# ignore all .class files
*.class
# exclude lib.class from "*.class", meaning all lib.class are still tracked
!lib.class
# ignore all json files whose name begin with 'temp-'
temp-*.json
# only ignore the build.log file in current directory, not those in its subdirectories
/build.log
# specify a folder with slash in the end
# ignore all files in any directory named temp
temp/
# ignore doc/notes.txt, but not doc/server/arch.txt
bin/*.txt
# ignore all .pdf files in the doc/ directory and any of its subdirectories
# /** matches 0 or more directories
doc/**/*.pdf
.idea/workspace.xml
backjoon/.idea/workspace.xml
backjoon/out/production/backjoon/.idea/workspace.xml
backjoon/.idea/misc.xml
backjoon/.idea/vcs.xml
.idea/vcs.xml
.DS_Store
*.iml
*.xml
/secret_folder
/build
/node_modules
docs/ExampleDocs.md
docs/kim-jin-seop-x-x.md
deploy.sh