Skip to content

Commit a93eec8

Browse files
committed
Improve .gitignore file
- Go files (from gitignore.io) - some IDE files - temp files from various OS
1 parent abd4e62 commit a93eec8

File tree

1 file changed

+36
-2
lines changed

1 file changed

+36
-2
lines changed

.gitignore

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,38 @@
1+
#############################
2+
# Compiled source #
3+
#############################
4+
dist/
5+
out/
16
/docker-machine-driver-vmware
27
/docker-machine-driver-vmware.exe
3-
/out
4-
dist/
8+
9+
#############################
10+
# Go files #
11+
#############################
12+
*.dll
13+
*.dylib
14+
*.exe
15+
*.exe~
16+
*.so
17+
18+
#############################
19+
# IDE generated files #
20+
#############################
21+
.idea/
22+
.vscode/
23+
*.iml
24+
25+
#############################
26+
# Logs and temp files #
27+
#############################
28+
*.log
29+
*.out
30+
*.tmp
31+
*~
32+
33+
#############################
34+
# OS generated files #
35+
#############################
36+
Thumbs.db
37+
.directory
38+
.DS_Store

0 commit comments

Comments
 (0)