c9s / r3

libr3 is a high-performance path dispatching library. It compiles your route paths into a prefix tree (trie). By using the constructed prefix trie in the start-up time, you may dispatch your routes with efficiency
http://c9s.github.com/r3/bench.html
MIT License
814 stars 83 forks source link

It's hard to contribute since generated files are not in .gitignore #20

Closed thedrow closed 10 years ago

thedrow commented 10 years ago

create mode 100644 Makefile create mode 100644 aclocal.m4 Git output for git add --all:

create mode 100644 autom4te.cache/output.0
 create mode 100644 autom4te.cache/output.1
 create mode 100644 autom4te.cache/requests
 create mode 100644 autom4te.cache/traces.0
 create mode 100644 autom4te.cache/traces.1
 create mode 100644 config.log
 create mode 100644 r3.pc
 create mode 100644 src/.deps/edge.Plo
 create mode 100644 src/.deps/gvc.Plo
 create mode 100644 src/.deps/list.Plo
 create mode 100644 src/.deps/node.Plo
 create mode 100644 src/.deps/str.Plo
 create mode 100644 src/.deps/token.Plo
 create mode 100644 src/.libs/libr3.lai
 create mode 120000 src/.libs/libr3.so
 create mode 120000 src/.libs/libr3.so.0
 create mode 100755 src/.libs/libr3.so.0.0.0
 create mode 100644 src/Makefile
 create mode 100644 stamp-h1
 create mode 100644 tests/.deps/bench.Po
 create mode 100644 tests/.deps/check_gvc.Po
 create mode 100644 tests/.deps/check_slug.Po
 create mode 100644 tests/.deps/check_tree.Po
 create mode 100644 tests/Makefile
c9s commented 10 years ago

I think you should try not to run git add --all but to use git commit -a instead.

c9s commented 10 years ago

git commit -a commits the modified files only.

thedrow commented 10 years ago

Those files should be on .gitignore anyway. Can you please do it?

c9s commented 10 years ago

Sure

c9s commented 10 years ago

gitignore list updated!