[Lldb-commits] [lldb] r204111 - spruce up .gitignore
Saleem Abdulrasool
compnerd at compnerd.org
Mon Mar 17 21:43:50 PDT 2014
Author: compnerd
Date: Mon Mar 17 23:43:49 2014
New Revision: 204111
URL: http://llvm.org/viewvc/llvm-project?rev=204111&view=rev
Log:
spruce up .gitignore
Update gitignore to ignore additional temporary files and format more similar to
LLVM's .gitignore.
Modified:
lldb/trunk/.gitignore
Modified: lldb/trunk/.gitignore
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/.gitignore?rev=204111&r1=204110&r2=204111&view=diff
==============================================================================
--- lldb/trunk/.gitignore (original)
+++ lldb/trunk/.gitignore Mon Mar 17 23:43:49 2014
@@ -1,4 +1,26 @@
+#==============================================================================#
+# The file specifies intentionally untracked files that git should ignore.
+# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
+#
+# This file is intentionally different from the output of `git svn show-ignore`,
+# as most of those are useless.
+#==============================================================================#
+
+#==============================================================================#
+# File extensions to be ignored anywhere in the tree.
+#==============================================================================#
+# Temp files created by most text editors.
+*~
+# Merge files created by git.
+*.orig
+# Byte compiled python modules.
*.pyc
+# vim swap files
+.*.swp
+.sw?
+# OS X specific files.
+.DS_store
+
build/
llvm-build/
*xcuserdata
More information about the lldb-commits
mailing list