...
1# OSX leaves these everywhere on SMB shares
2._*
3
4# OSX trash
5.DS_Store
6
7# Developers can store local stuff in dirs named __something
8__*
9
10# Eclipse files
11.classpath
12.project
13.settings/**
14
15# Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
16.idea/
17*.iml
18
19# Vscode files
20.vscode
21
22# This is where the result of the go build goes
23/output*/
24/_output*/
25/_output
26
27# Emacs save files
28*~
29\#*\#
30.\#*
31
32# Vim-related files
33[._]*.s[a-w][a-z]
34[._]s[a-w][a-z]
35*.un~
36Session.vim
37.netrwhist
38
39# cscope-related files
40cscope.*
41
42# Go test binaries
43*.test
44/hack/.test-cmd-auth
45
46# JUnit test output from ginkgo e2e tests
47/junit*.xml
48
49# Mercurial files
50**/.hg
51**/.hg*
52
53# Vagrant
54.vagrant
55network_closure.sh
56
57# Local cluster env variables
58/cluster/env.sh
59
60# Compiled binaries in third_party
61/third_party/pkg
62
63# Also ignore etcd installed by hack/install-etcd.sh
64/third_party/etcd*
65/default.etcd
66
67# Also ignore protoc installed by hack/install-protoc.sh
68/third_party/protoc*
69
70# User cluster configs
71.kubeconfig
72
73.tags*
74
75# Version file for dockerized build
76.dockerized-kube-version-defs
77
78# Web UI
79/www/master/node_modules/
80/www/master/npm-debug.log
81/www/master/shared/config/development.json
82
83# Karma output
84/www/test_out
85
86# precommit temporary directories created by ./hack/verify-generated-docs.sh and ./hack/lib/util.sh
87/_tmp/
88/doc_tmp/
89
90# Test artifacts produced by Prow/kubetest2 jobs
91/_artifacts/
92/_rundir/
93
94# Go dependencies installed on Jenkins
95/_gopath/
96
97# Config directories created by gcloud and gsutil on Jenkins
98/.config/gcloud*/
99/.gsutil/
100
101# CoreOS stuff
102/cluster/libvirt-coreos/coreos_*.img
103
104# Downloaded Kubernetes binary release
105/kubernetes/
106
107# direnv .envrc files
108.envrc
109
110# Downloaded kubernetes binary release tar ball
111kubernetes.tar.gz
112
113# Phony test files used as part of coverage generation
114zz_generated_*_test.go
115
116# Just in time generated data in the source, should never be committed
117/test/e2e/generated/bindata.go
118
119# This file used by some vendor repos (e.g. github.com/go-openapi/...) to store secret variables and should not be ignored
120!\.drone\.sec
121
122/bazel-*
123*.pyc
124
125# generated by verify-vendor.sh
126vendordiff.patch
View as plain text