diff options
author | Russell Teague <rteague@redhat.com> | 2017-01-26 09:47:51 -0500 |
---|---|---|
committer | Russell Teague <rteague@redhat.com> | 2017-01-26 09:47:51 -0500 |
commit | 6c9e37f386869cb9df3c132702f3b46655fc737c (patch) | |
tree | 1e2eeaab45b2a5de91cc071540567f57ed3178d0 /.gitignore | |
parent | 7f1f05d90b4f6032629cf1a08e8f4139093f0f0b (diff) | |
download | openshift-6c9e37f386869cb9df3c132702f3b46655fc737c.tar.gz openshift-6c9e37f386869cb9df3c132702f3b46655fc737c.tar.bz2 openshift-6c9e37f386869cb9df3c132702f3b46655fc737c.tar.xz openshift-6c9e37f386869cb9df3c132702f3b46655fc737c.zip |
.gitignore cleanup
- Escaping hash for emacs temp files so it is not a comment line
- *.iml is covered by .idea/
- multi_inventory.yaml is unused
- Only ignore the root ansible.cfg, we have another ansible.cfg
`git ls-files -i --exclude-standard`
- .tox and cover are directories
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore index 9af271235..d3fab9f1a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ *~ -#*# -.idea -*.iml +\#*# +.idea/ *.komodoproject .loadpath .project @@ -15,15 +14,14 @@ .DS_Store gce.ini multi_ec2.yaml -multi_inventory.yaml .vagrant .tags* -ansible.cfg +/ansible.cfg *.retry .vscode/* .cache -.tox +.tox/ .coverage *.egg-info .eggs -cover +cover/ |