From b5fd253af366cae059f7e2f0db8a261076e39e81 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Mon, 18 Jul 2011 23:05:36 +0000 Subject: Add .gitignore file. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@135440 91177308-0d34-0410-b5e6-96231b3b80d8 --- .gitignore | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..ddd66380ad --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +#==============================================================================# +# This 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 + +#==============================================================================# +# Explicit files to ignore (only matches one). +#==============================================================================# +cscope.files +cscope.out -- cgit v1.2.1