From ff03a84488befce0bf0f5c61aa55240026f2de20 Mon Sep 17 00:00:00 2001 From: Anita Kuno Date: Thu, 26 Jun 2014 15:20:04 -0400 Subject: [PATCH] Create a .gitignore file Currently infra-manual doesn't have a .gitignore file. This patch creates that file and includes some initial contents - the results of running `tox` to build the docs and some artifacts of using various editors. Change-Id: Ic51eeaa2d972b8d065432e01bf1603ad8b4c3a90 --- .gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..97d1e1e --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Testenvironment +.tox/* + +# Build directories +doc/build/* + +# Packages +*.egg-info/* + +# Editors +*~ +.*.swp +.bak + +# For Mac Users +.DS_Store