Skip to content

Commit a704ebe

Browse files
committed
chore: add .gitignore file to exclude unnecessary files and directories from version control
The .gitignore file is added to the project to specify which files and directories should be ignored by Git. This helps to keep the repository clean and avoid including unnecessary files such as binaries, test outputs, dependency directories, IDE folders, and operating system files.
1 parent 8b11407 commit a704ebe

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.exe~
4+
*.dll
5+
*.so
6+
*.dylib
7+
8+
# Test binary, built with `go test -c`
9+
*.test
10+
11+
# Output of the go coverage tool, specifically when used with LiteIDE
12+
*.out
13+
14+
# Dependency directories
15+
vendor/
16+
17+
# IDE folders
18+
.idea/
19+
20+
# Operating system files
21+
.DS_Store
22+
.DS_Store?
23+
._*
24+
.Spotlight-V100
25+
.Trashes
26+
ehthumbs.db
27+
Thumbs.db

0 commit comments

Comments
 (0)