diff options
author | Ivan Remizov <iremizov@gmail.com> | 2018-10-20 00:36:28 +0300 |
---|---|---|
committer | Ivan Remizov <iremizov@gmail.com> | 2018-10-20 00:36:28 +0300 |
commit | c032a8cea7407dace69b421f87e05ce44a3ca6ab (patch) | |
tree | 57f7640927611b83a239df90b0f6b954ffbf1935 /.gitignore | |
parent | d66593821bff635b4ecf455a4a92a06c58115f73 (diff) | |
download | zuul-c032a8cea7407dace69b421f87e05ce44a3ca6ab.tar.gz |
Exclude .keep files from .gitignore
There is a file zuul/web/static/.keep which is commited to git but
excluded from vcs by .gitignore. The problem is that some advanced IDEs
display annoying warnings related to this case.
It also looks like misconfiguration.
This patch excludes .keep files from .gitignore which means that such
files will be tracked.
Change-Id: Ib9ea9e585f723cad523d4f825c076280e2f2afe0
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index d35e71578..55cbe13af 100644 --- a/.gitignore +++ b/.gitignore @@ -20,5 +20,6 @@ dist/ cover/ htmlcov/ zuul/web/static +!.keep node_modules yarn-error.log |