From 4f0956c41bc57005ff24a53f11039f5ee7d06910 Mon Sep 17 00:00:00 2001 From: ling-yun Date: Thu, 28 Aug 2014 15:38:56 +0800 Subject: [PATCH] ignore .idea folder in glance If we use JetBrains PyCharm as python develop tool, JetBrains PyCharm would automatically generate its config folder name .idea in the root dir of your python code. Many Code projects, such as nova and cinder, have ignore .idea folder. Project glance should also ignore .idea folder. Change-Id: I1e3ba1936c8b918aa4669c2d7fceac23a23ca974 Closes-Bug: #1362451 --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index d4a0a947ff..b63b914dea 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ doc/source/api # IDE files .project .pydevproject +.idea \ No newline at end of file