From 8fc5ae480eafffc7e1bea046ad9b8e06350b008e Mon Sep 17 00:00:00 2001 From: Zhenguo Niu Date: Thu, 28 Nov 2013 22:13:47 +0800 Subject: [PATCH] Ignore swap files generated during file edting by vim To ignore swap files from getting into repository currently the implemented ignore is *.swp however vim adds more swap files if these files exists, so improving this with .*.sw? Change-Id: I11965d5fb22aeae622dad8bb29cf1f0533ed439a Closes-Bug: #1255876 --- .gitignore | 2 +- doc/source/index.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2c64f1527..ba0f4e3a7 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,7 @@ subunit.log cover *.pyc .idea -*.swp +.*.sw? *~ AUTHORS ChangeLog diff --git a/doc/source/index.rst b/doc/source/index.rst index 44cc75704..79d3b22a7 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -35,6 +35,7 @@ MASTER .. _1254587: http://bugs.launchpad.net/python-cinderclient/+bug/1254587 .. _1253142: http://bugs.launchpad.net/python-cinderclient/+bug/1253142 .. _1252665: http://bugs.launchpad.net/python-cinderclient/+bug/1252665 +.. _1255876: http://bugs.launchpad.net/python-cinderclient/+bug/1255876 1.0.7 -----