summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHana (Hyang-Ah) Kim <hyangah@gmail.com>2017-08-04 17:38:46 -0400
committerHyang-Ah Hana Kim <hyangah@gmail.com>2017-08-15 16:24:37 +0000
commite4ba9e3c546251c742b6496752c376f6a253c4a9 (patch)
treed07f7dda85469df0a5a93415c7740e11a5ddc757
parent22cfe24aca80653b0e8efdd4a1aba1df00e8e72d (diff)
downloadgo-git-e4ba9e3c546251c742b6496752c376f6a253c4a9.tar.gz
.gitignore: exclude /.idea/
Some IDEs (e.g. intellij IDE based ones) create the .idea folder to store project specific settings. This is irrelevant to Go project that does not assume any specific IDEs, but interferes with git. Change-Id: I0c93d9a3f7edff095fbe0c7a53b06c92b391c970 Reviewed-on: https://go-review.googlesource.com/53770 Reviewed-by: Ian Lance Taylor <iant@golang.org>
-rw-r--r--.gitignore3
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 8b2f36b9f1..c56cad7f2d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -43,3 +43,6 @@ _testmain.go
/test/pass.out
/test/run.out
/test/times.out
+
+# IntelliJ-based editors
+/.idea/