From: Joe Konno <joe.konno(a)intel.com>
Simple patch to .gitignore which ignores files output by vim, cscope, and
ctags.
Did a sanity check with 'git ls-files -i --exclude-standard' after applying
this patch and no red flags raised.
Joe Konno (1):
.gitignore: ignore vim swap, cscope, ctags
.gitignore | 3 +++
1 file changed, 3 insertions(+)
--
2.8.3
Show replies by date
From: Joe Konno <joe.konno(a)intel.com>
Signed-off-by: Joe Konno <joe.konno(a)intel.com>
---
.gitignore | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.gitignore b/.gitignore
index f879840d9057..de3c3b1670cf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,7 +9,9 @@
*.powertop
*~
.deps
+.*.swp
/po/*.gmo
+cscope.*
Makefile
Makefile.in
@@ -84,3 +86,4 @@ Makefile.in
/src/powertop
/stamp-h1
/stamp-po
+tags
--
2.8.3