diff options
author | Pacien TRAN-GIRARD | 2015-02-14 11:23:50 +0100 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2015-02-14 11:23:50 +0100 |
commit | 8b1f88ce72ef8496879395e7f04b676e6a16e07a (patch) | |
tree | 9215492c9240779cbcf16cf21a22fde0b61ed451 /.gitignore | |
download | go-envcfg-8b1f88ce72ef8496879395e7f04b676e6a16e07a.tar.gz |
Init repository
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2d797c0 --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,78 @@ | |||
1 | # Created by .ignore support plugin (hsz.mobi) | ||
2 | |||
3 | ### JetBrains template | ||
4 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm | ||
5 | |||
6 | *.iml | ||
7 | |||
8 | ## Directory-based project format: | ||
9 | .idea/ | ||
10 | # if you remove the above rule, at least ignore the following: | ||
11 | |||
12 | # User-specific stuff: | ||
13 | # .idea/workspace.xml | ||
14 | # .idea/tasks.xml | ||
15 | # .idea/dictionaries | ||
16 | |||
17 | # Sensitive or high-churn files: | ||
18 | # .idea/dataSources.ids | ||
19 | # .idea/dataSources.xml | ||
20 | # .idea/sqlDataSources.xml | ||
21 | # .idea/dynamic.xml | ||
22 | # .idea/uiDesigner.xml | ||
23 | |||
24 | # Gradle: | ||
25 | # .idea/gradle.xml | ||
26 | # .idea/libraries | ||
27 | |||
28 | # Mongo Explorer plugin: | ||
29 | # .idea/mongoSettings.xml | ||
30 | |||
31 | ## File-based project format: | ||
32 | *.ipr | ||
33 | *.iws | ||
34 | |||
35 | ## Plugin-specific files: | ||
36 | |||
37 | # IntelliJ | ||
38 | out/ | ||
39 | |||
40 | # mpeltonen/sbt-idea plugin | ||
41 | .idea_modules/ | ||
42 | |||
43 | # JIRA plugin | ||
44 | atlassian-ide-plugin.xml | ||
45 | |||
46 | # Crashlytics plugin (for Android Studio and IntelliJ) | ||
47 | com_crashlytics_export_strings.xml | ||
48 | crashlytics.properties | ||
49 | crashlytics-build.properties | ||
50 | |||
51 | |||
52 | ### Go template | ||
53 | # Compiled Object files, Static and Dynamic libs (Shared Objects) | ||
54 | *.o | ||
55 | *.a | ||
56 | *.so | ||
57 | |||
58 | # Folders | ||
59 | _obj | ||
60 | _test | ||
61 | |||
62 | # Architecture specific extensions/prefixes | ||
63 | *.[568vq] | ||
64 | [568vq].out | ||
65 | |||
66 | *.cgo1.go | ||
67 | *.cgo2.c | ||
68 | _cgo_defun.c | ||
69 | _cgo_gotypes.go | ||
70 | _cgo_export.* | ||
71 | |||
72 | _testmain.go | ||
73 | |||
74 | *.exe | ||
75 | *.test | ||
76 | *.prof | ||
77 | |||
78 | |||