diff options
author | Juan Vidal <juan.vidal.allende@ericsson.com> | 2017-02-13 16:14:26 +0000 |
---|---|---|
committer | Juan Vidal <juan.vidal.allende@ericsson.com> | 2017-02-13 16:22:31 +0000 |
commit | 2fe91a2af17f28bf5900bbfe3d8873e41a14e2f3 (patch) | |
tree | 7518de723e7b1403646dbe99e0a1ab10d55c8ba9 /.gitignore | |
parent | 065fba5bef236f992bd5e4122e635bb21d525af9 (diff) |
Add some ignores to .gitignore
- *pyc is bytecode python
- egg-info folders are the result of installation of python packages
- ovs-logs is used by tests to dump runtime information
None of these files/folders should be added to the repository, so it is better
to make git completely ignore them
Change-Id: If26038984f82a92e7118f2accc0f93d2592391b7
Signed-off-by: Juan Vidal <juan.vidal.allende@ericsson.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,6 @@ /docs_build/ /docs_output/ /releng/ +*pyc +/sfc.egg-info/ +*ovs-logs/ |