Try this now: configure your current branch's pushremote to push to "refs/heads/*:refs/heads/rr/*". Now, type 'git show @{p}'. Voila! It currently only works when: 1. remote.<name>.push is explicitly specified. 2. There is a pattern to match (*). Proof-of-concept only. Signed-off-by: Ramkumar Ramachandra <artagnon@xxxxxxxxx> --- sha1_name.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/sha1_name.c b/sha1_name.c index 5f6958b..283d538 100644 --- a/sha1_name.c +++ b/sha1_name.c @@ -1008,6 +1008,24 @@ static void die_no_upstream(struct branch *upstream, char *name) { } } +static void find_push_ref(struct branch *branch) { + struct remote *remote = pushremote_get(NULL); + const struct refspec *pat = NULL; + char raw_ref[PATH_MAX]; + struct ref *this_ref; + char *dst_name; + int len; + + sprintf(raw_ref, "refs/heads/%s", branch->name); + len = strlen(raw_ref) + 1; + this_ref = xcalloc(1, sizeof(*this_ref) + len); + memcpy(this_ref->name, raw_ref, len); + + dst_name = get_ref_match(remote->push, remote->push_refspec_nr, + this_ref, MATCH_REFS_ALL, 0, &pat); + printf("dst_name = %s\n", dst_name); +} + /* * This reads short-hand syntax that not only evaluates to a commit * object name, but also can act as if the end user spelled the name @@ -1085,6 +1103,8 @@ int interpret_branch_name(const char *name, struct strbuf *buf) cp = shorten_unambiguous_ref(branch->merge[0]->dst, 0); break; case AT_KIND_PUSH: + find_push_ref(branch); + die("Done!"); break; } -- 1.8.3.rc3.17.gd95ec6c.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html