summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobinson Tryon <qubit@runcibility.com>2012-07-23 22:27:46 -0400
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-07-28 20:50:18 +0200
commitb2996f867f3c6c62a9bfca4bef453f8257352ca5 (patch)
tree8f60d3b3cca1f7d9311dcda719758e218ff279fe
parent143021676d44477ab32e1f36a9e086c3b007527b (diff)
downloadcppunit-b2996f867f3c6c62a9bfca4bef453f8257352ca5.tar.gz
gitignore: Create .gitignore file
This commit adds a new top-level .gitignore file and adds ignores for the usual stuff: - Temporary/save files - Compiled object files - Other stuff created by the configure/build process This will make 'git status' give much more relevant output.
-rw-r--r--.gitignore27
1 files changed, 27 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..52dad3f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,27 @@
+# Backup and temporary files.
+*~
+.*sw?
+\#*
+.DS_Store
+
+# Build-generated stuff.
+Makefile
+Makefile.in
+aclocal.m4
+autom4te.cache/
+build.log
+build_2.log
+config.log
+config.status
+config/
+configure
+cppunit-config
+cppunit.pc
+cppunit.spec
+
+# Compiled files.
+*.o
+*.lo
+*.la
+*.deps/
+*.libs/ \ No newline at end of file