diff options
author | Abdulwasiu Apalowo <abdulwasiuapalowo@gmail.com> | 2022-05-26 17:08:08 +0100 |
---|---|---|
committer | Abdulwasiu Apalowo <abdulwasiuapalowo@gmail.com> | 2022-06-01 18:04:44 +0100 |
commit | c2fb698e7c9179fa4737a1f84bafac5ee1b00e57 (patch) | |
tree | 2243d86a5c517e26189d52dbf28053a8f71c5083 | |
parent | 970134d6166cca7d8340c8452a8ed052ae2df2b5 (diff) | |
download | libvirt-ci-c2fb698e7c9179fa4737a1f84bafac5ee1b00e57.zip libvirt-ci-c2fb698e7c9179fa4737a1f84bafac5ee1b00e57.tar.gz libvirt-ci-c2fb698e7c9179fa4737a1f84bafac5ee1b00e57.tar.bz2 |
Combine all instances of .gitignore
To prepare for changes in the directory structure, all the
instances of .gitignore in the project are combined together
leaving a single .gitignore file in the root directory.
Signed-off-by: Abdulwasiu Apalowo <abdulwasiuapalowo@gmail.com>
-rw-r--r-- | .gitignore | 16 | ||||
-rw-r--r-- | guests/.gitignore | 2 | ||||
-rw-r--r-- | guests/lcitool/.gitignore | 14 |
3 files changed, 16 insertions, 16 deletions
@@ -1 +1,17 @@ *~ +*.retry +*.swp +__pycache__/ +*.py[cod] + +build/ + +# We need to include the following back, as this is a directory we want to track +!lcitool/ansible/playbooks/build/ + +dist/ +eggs/ +.eggs/ +sdist/ +*.egg-info/ +*.egg diff --git a/guests/.gitignore b/guests/.gitignore deleted file mode 100644 index 0f05cf3..0000000 --- a/guests/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.retry -*.swp diff --git a/guests/lcitool/.gitignore b/guests/lcitool/.gitignore deleted file mode 100644 index a73b006..0000000 --- a/guests/lcitool/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -__pycache__/ -*.py[cod] - -build/ - -# We need to include the following back, as this is a directory we want to track -!lcitool/ansible/playbooks/build/ - -dist/ -eggs/ -.eggs/ -sdist/ -*.egg-info/ -*.egg |