author | Junio C Hamano <gitster@pobox.com> | |
Fri, 13 Aug 2010 01:32:49 +0000 (18:32 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Fri, 13 Aug 2010 01:32:49 +0000 (18:32 -0700) |
* jc/sha1-name-find-fix:
sha1_name.c: fix parsing of ":/token" syntax
Conflicts:
sha1_name.c
sha1_name.c: fix parsing of ":/token" syntax
Conflicts:
sha1_name.c
1 | 2 | |||
---|---|---|---|---|
sha1_name.c | patch | | diff1 | | diff2 | | blob | history |
diff --cc sha1_name.c
index 4f2af8da934b125f2c09ceb4d8185dabc58f7831,8a551025f0f4a1f02f60b1611d412ae0e125dbb7..4af94fa59806c570c177a68139b54d46772d68a5
--- 1/sha1_name.c
--- 2/sha1_name.c
+++ b/sha1_name.c
return get_short_sha1(name, len, sha1, 0);
}
- * with the given string.
+ /*
+ * This interprets names like ':/Initial revision of "git"' by searching
+ * through history and returning the first commit whose message starts
++ * the given regular expression.
+ *
+ * For future extension, ':/!' is reserved. If you want to match a message
+ * beginning with a '!', you have to repeat the exclamation mark.
+ */
+ #define ONELINE_SEEN (1u<<20)
+
static int handle_one_ref(const char *path,
const unsigned char *sha1, int flag, void *cb_data)
{