From: Hana (Hyang-Ah) Kim Date: Fri, 4 Aug 2017 21:38:46 +0000 (-0400) Subject: .gitignore: exclude /.idea/ X-Git-Tag: go1.10beta1~1550 X-Git-Url: http://www.git.cypherpunks.ru/?a=commitdiff_plain;h=e4ba9e3c546251c742b6496752c376f6a253c4a9;p=gostls13.git .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 --- 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/