]> granicus.if.org Git - libevent/commitdiff
Add a .gitignore file.
authorNick Mathewson <nickm@torproject.org>
Fri, 20 Nov 2009 17:17:14 +0000 (12:17 -0500)
committerNick Mathewson <nickm@torproject.org>
Fri, 20 Nov 2009 17:17:14 +0000 (12:17 -0500)
.gitignore plays the same role in Git as the svn:ignore property does in
subversion.

.gitignore [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..f9112bb
--- /dev/null
@@ -0,0 +1,74 @@
+### These files should get ignored no matter where they appear.
+
+# Editors leave these lying around
+\#*\#
+.#*
+*~
+*.swp
+
+# C stuff
+*.o
+
+# Windows stuff
+*.obj
+*.exe
+
+# Patch leaves these lying arround
+*.orig
+*.rej
+
+# gcov stuff
+*.gcno
+*.gcov
+*.gcda
+
+# Autotools stuff
+.deps
+Makefile
+Makefile.in
+
+# Libtool stuff
+.libs
+*.lo
+*.la
+
+# Stuff made by our makefiles
+libevent.pc
+
+## The initial / makes these files only get ignored in particular directories.
+/autom4te.cache
+
+/aclocal.m4
+/config.guess
+/config.log
+/config.status
+/config.sub
+/configure
+/depcomp
+/config.h
+/config.h.in
+/event-config.h
+/libtool
+/ltmain.sh
+/stamp-h1
+
+/m4
+
+/sample/dns-example
+/sample/event-test
+/sample/le-proxy
+/sample/signal-test
+/sample/time-test
+
+/test/bench
+/test/bench_cascade
+/test/bench_http
+/test/bench_httpclient
+/test/regress
+/test/regress.gen.c
+/test/regress.gen.h
+/test/test-eof
+/test/test-init
+/test/test-time
+/test/test-weof
+