forked from OpenLiberty/open-liberty
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
35 lines (24 loc) · 729 Bytes
/
.gitignore
File metadata and controls
35 lines (24 loc) · 729 Bytes
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
# Ignore build folders at the root of each project
/*/*/build/
# Ignore bin folders at the root of each project
/*/*/bin/
# Ignore bin_test folders at the root of each project
/*/*/bin_test/
# Ignore generated folders at the root of each project
/*/*/generated/
# Ignore all autoFVT folders at the root of each project
/*/*/autoFVT/
# Ignore some jazz metadata
.jazz5/
# Ignore class files (as some extra sanity) - they should never be under source control
*.class
# Ignore .DS_Store which occurs on zip extract on mac
.DS_Store
# Ignore gradle metadata
.gradle
# Ignore Eclipse metadata
.metadata/
# Ignore JetBrains .idea
.idea
# Ignore direnv files - for quickly switching between JDK levels between projects
.envrc