-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
37 lines (29 loc) · 905 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
# The .gitignore file contains the files to be excluded from git source control. The .cfignore file contains the set of
# files to ignore when deploying to Bluemix. The two list of files are similar but not the same. However, they should
# be maintained in parallel. Any file that's added to one should be added to the other. If that file should not be
# ignored in that particular file it should be moved to the appropriate section and commented out.
####### Common Files (ignored by both .gitnore (Git) and .cfignore (Cloud Foundry) #######
# Logs
logs
*.log
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
.DS_Store
DS_Store
.sass-cache
node_modules
# Environment files
env
.env
config/local.properties
config/local.json
# IntelliJ IDEA Files
.idea
*.iml
# VS Code Files
.vscode
# VIM Files
*.swp
# Build output files
out
tmp