In particular, .gitignore, *.go, *.sls and etcd.conf are files that should not be marked as executable. Tested: built it with hack/build-go.sh, called all binaries with the -version flag to confirm they work. Signed-off-by: Filipe Brandenburger <filbranden@google.com>
31 lines
391 B
Plaintext
31 lines
391 B
Plaintext
# OSX leaves these everywhere on SMB shares
|
|
._*
|
|
|
|
# Eclipse files
|
|
.classpath
|
|
.project
|
|
.settings/**
|
|
|
|
# This is where the result of the go build goes
|
|
/output/**
|
|
/output
|
|
|
|
# Emacs save files
|
|
*~
|
|
|
|
# Go test binaries
|
|
*.test
|
|
|
|
# Mercurial files
|
|
**/.hg
|
|
**/.hg*
|
|
|
|
# Vagrant
|
|
.vagrant
|
|
|
|
# Version file we automatically make
|
|
/pkg/version/autogenerated.go
|
|
|
|
# compiled binaries in third_party
|
|
/third_party/pkg
|