-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
63 lines (49 loc) · 1.63 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
### https://raw.githubusercontent.com/github/gitignore/master/Go.gitignore
# Binaries for programs and plugins
*.exe
*.dll
*.so
*.dylib
# Test binary, build with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/
### Repo-specific
dlts-enm
enm
.idea
*~
dist/*
!dist/.commit-empty-directory
# Running `godep save` automatically checks vendor/ into source control.
# For now, don't commit it. To generate vendor/, can do this:
#
# GOPATH=$(pwd)/vendor godep restore; mv vendor/src/* vendor/; rmdir vendor/src/
#
# It's apparently been common practice to do it this way (source: https://github.com/tools/godep/issues/50):
#
# GOPATH=$(godep path) godep restore
#
# `godep path` returns an error, though:
#
# $ mkdir -p vendor/{bin/pkg/src}
# $ godep path
# Error: GO15VENDOREXPERIMENT is enabled and the vendor/ directory is not a valid Go workspace.
#
# Note that using `godep restore` in this way does not create a vendor/ directory that is identical
# to what is created by `godep save`, which does not copy certain files and directories by design.
# (see documentation for `godep save` for details).
vendor/
sitegen/testdata/cache/*
!sitegen/testdata/cache/sitegen-browsetopiclists/
!sitegen/testdata/cache/sitegen-topicpages/
sitegen/testdata/tmp/*
!sitegen/testdata/tmp/.commit-empty-directory
solr/testdata/tmp/*
!solr/testdata/tmp/.commit-empty-directory
sitegenmysql/testdata/tmp/*
!sitegenmysql/testdata/tmp/.commit-empty-directory
solrmysql/testdata/tmp/*
!solrmysql/testdata/tmp/.commit-empty-directory