summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEoin Coffey <ecoffey@gmail.com>2014-05-23 13:00:30 -0600
committerEoin Coffey <ecoffey@gmail.com>2014-05-23 13:00:30 -0600
commit87493bca9c5c14f99adea5ceadf6caa8005a6ada (patch)
treeaaea4ccc61dbf3998b48c34a478a2eb4bd6ff536
parent26cce32133363133b479cfd811523270db851466 (diff)
downloadlibgit2-87493bca9c5c14f99adea5ceadf6caa8005a6ada.tar.gz
Remove simple --author, --committer, and --grep from PROJECTS
-rw-r--r--PROJECTS.md6
1 files changed, 0 insertions, 6 deletions
diff --git a/PROJECTS.md b/PROJECTS.md
index 9472fb43c..d17214471 100644
--- a/PROJECTS.md
+++ b/PROJECTS.md
@@ -39,12 +39,6 @@ These are good small projects to get started with libgit2.
the data is available, you would just need to add the code into the
`print_commit()` routine (along with a way of passing the option
into that function).
- * For `examples/log.c`, implement any one of `--author=<...>`,
- `--committer=<...>`, or `--grep=<...>` but just use simple string
- match with `strstr()` instead of full regular expression
- matching. (I.e. I'm suggesting implementing this as if
- `--fixed-strings` was always turned on, because it will be a simpler
- project.)
* As an extension to the matching idea for `examples/log.c`, add the
`-i` option to use `strcasestr()` for matches.
* For `examples/log.c`, implement the `--first-parent` option now that