gitignore file for Go Projects
Category : Supporting Scripts
This is a gitignore file for a Go project to ensure temporary files and build files are not added to git repository commits.
1 2 3 4 5 6 7 8 9 10 |
# Binaries, plugins, libs *.dll *.dylib *.exe *.exe~ *.so # Testing *.test *.tmp |