summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c2883e6)
raw | patch | inline | side by side (parent: c2883e6)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Sat, 17 Jan 2009 18:08:12 +0000 (19:08 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 20 Jan 2009 00:36:34 +0000 (16:36 -0800) |
To do that, Git no longer looks forward for the '@{' corresponding to the
closing '}' but backward, and dwim_ref() as well as dwim_log() learnt
about the @{-<N>} notation.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
closing '}' but backward, and dwim_ref() as well as dwim_log() learnt
about the @{-<N>} notation.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sha1_name.c | patch | blob | history | |
t/t1505-rev-parse-last.sh | patch | blob | history |
diff --git a/sha1_name.c b/sha1_name.c
index d6972f2d6a2fd5af38b9babbacd97c9388962bb4..9d544a26332d14998bdcae0474bb66f1f542a4b4 100644 (file)
--- a/sha1_name.c
+++ b/sha1_name.c
return slash;
}
+/*
+ * *string and *len will only be substituted, and *string returned (for
+ * later free()ing) if the string passed in is of the form @{-<n>}.
+ */
+static char *substitute_nth_last_branch(const char **string, int *len)
+{
+ struct strbuf buf = STRBUF_INIT;
+ int ret = interpret_nth_last_branch(*string, &buf);
+
+ if (ret == *len) {
+ size_t size;
+ *string = strbuf_detach(&buf, &size);
+ *len = size;
+ return (char *)*string;
+ }
+
+ return NULL;
+}
+
int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
{
+ char *last_branch = substitute_nth_last_branch(&str, &len);
const char **p, *r;
int refs_found = 0;
break;
}
}
+ free(last_branch);
return refs_found;
}
int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
{
+ char *last_branch = substitute_nth_last_branch(&str, &len);
const char **p;
int logs_found = 0;
if (!warn_ambiguous_refs)
break;
}
+ free(last_branch);
return logs_found;
}
/* basic@{time or number or -number} format to query ref-log */
reflog_len = at = 0;
if (str[len-1] == '}') {
- for (at = 0; at < len - 1; at++) {
+ for (at = len-2; at >= 0; at--) {
if (str[at] == '@' && str[at+1] == '{') {
reflog_len = (len-1) - (at+2);
len = at;
index 1e49dd2c8fb2c21db3ef4f29bdb1c3f63aa0a748..c745ec437205ca564bd90e2e5f776eccf57105b9 100755 (executable)
test_rev_equivalent side^2 @{-1}^2
'
-test_expect_failure '@{-1}@{1} works' '
+test_expect_success '@{-1}@{1} works' '
test_rev_equivalent side@{1} @{-1}@{1}
'