From 652da869592b1ef4b96694db07ed178add1f80e2 Mon Sep 17 00:00:00 2001 From: Sarah Day Date: Fri, 4 Dec 2015 10:01:11 -0500 Subject: [PATCH] Add some common files to .gitignore Add some OS specific files and Eclipse project files, as well as the top level build directory because it is recommended in the wiki to perform your build inside of it. Also ignore the autom4te.cache directory. [tlyu@mit.edu: minor commit message edits] --- .gitignore | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.gitignore b/.gitignore index 3fd3b20ad7..752683c064 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,31 @@ obj/ testdir/ testlog +# OSX files +.DS_Store + +# Generated by Dolphin for individual settings for directories +.directory + +# Files generated by merges +*.orig + +# Windows thumbnail db +Thumbs.db + +# Eclipse specific files +.project +.cproject +.settings/ +.pydevproject +.autotools + +# Ignore the build directory +/build/ + +# The autom4te cache directory +autom4te.cache/ + /doc/version.py /doc/html/ -- 2.47.2