Skip to content

Commit 4046bdb

Browse files
committed
Apply appropriate .gitignore and .gitattributes
1 parent 1f36ba9 commit 4046bdb

File tree

2 files changed

+61
-0
lines changed

2 files changed

+61
-0
lines changed

.gitattributes

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Repository specific GIT options
2+
3+
# Set default handling of line terminators for all non explicitly listed file types:
4+
* text=auto
5+
6+
# Force LF as internal repository format for all following files;
7+
# this overrides user settings to enforce the *right format* :
8+
*.java text
9+
*.xml text
10+
*.txt text
11+
*.md text
12+
*.properties text
13+
14+
# Specify we want Java-friendly readable chunk headers for diff:
15+
16+
*.java diff=java
17+

.gitignore

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Typically *NIX text editors, by default, append '~' to files on saving to make backups
2+
*~
3+
4+
# Gradle work directory
5+
.gradle
6+
7+
# Build output directories
8+
/target
9+
*/target
10+
*/**/target
11+
/build
12+
*/build
13+
14+
# IntelliJ specific files/directories
15+
out
16+
.idea
17+
*.ipr
18+
*.iws
19+
*.iml
20+
atlassian-ide-plugin.xml
21+
22+
# Eclipse specific files/directories
23+
.classpath
24+
.project
25+
.settings
26+
.metadata
27+
bin
28+
29+
# NetBeans specific files/directories
30+
.nbattrs
31+
32+
# Miscellaneous
33+
*.log
34+
.clover
35+
.DS_Store
36+
37+
# Profiler and heap dumps
38+
*.jps
39+
*.hprof
40+
/.nb-gradle/
41+
42+
# Vim
43+
*.swp
44+
*.swo

0 commit comments

Comments
 (0)