Last active
May 6, 2020 03:13
-
-
Save Zhwt/4da3293ba43e080e42f962780484269a to your computer and use it in GitHub Desktop.
.gitignore file for Go projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # JetBrains intelliJ IDE config | |
| .idea/ | |
| *.ipr | |
| *.iml | |
| *.iws | |
| # VS Code | |
| .vscode/ | |
| # VIM Editor temporary files | |
| *.swp | |
| # Other temporary files | |
| *.log | |
| *.cache | |
| *.diff | |
| *.patch | |
| *.tmp | |
| # Mac OS X files | |
| .DS_Store | |
| # Windows thumbnail files | |
| Thumbs.db | |
| # Binaries for programs and plugins | |
| *.exe | |
| *.exe~ | |
| *.dll | |
| *.so | |
| *.dylib | |
| # Test binary, built with `go test -c` | |
| *.test | |
| *debug.test | |
| # Output of the go coverage tool, specifically when used with LiteIDE | |
| *.out | |
| # Generated Protobuf files | |
| proto/*.go | |
| # Dependency directories | |
| vendor/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment