summaryrefslogtreecommitdiff
path: root/remote.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2015-05-21 04:45:36 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-05-22 16:33:08 (GMT)
commite291c75a95d60862cbe12897b5cffb01ba4cedd5 (patch)
tree2c46cac2d76b9f15f39d3ae0f30e1f2f22c8b1e3 /remote.h
parent979cb245e29b35812d2d71a04069ba7a4580981f (diff)
downloadgit-e291c75a95d60862cbe12897b5cffb01ba4cedd5.zip
git-e291c75a95d60862cbe12897b5cffb01ba4cedd5.tar.gz
git-e291c75a95d60862cbe12897b5cffb01ba4cedd5.tar.bz2
remote.c: add branch_get_push
In a triangular workflow, the place you pull from and the place you push to may be different. As we have branch_get_upstream for the former, this patch adds branch_get_push for the latter (and as the former implements @{upstream}, so will this implement @{push} in a future patch). Note that the memory-handling for the return value bears some explanation. Some code paths require allocating a new string, and some let us return an existing string. We should provide a consistent interface to the caller, so it knows whether to free the result or not. We could do so by xstrdup-ing any existing strings, and having the caller always free. But that makes us inconsistent with branch_get_upstream, so we would prefer to simply take ownership of the resulting string. We do so by storing it inside the "struct branch", just as we do with the upstream refname (in that case we compute it when the branch is created, but there's no reason not to just fill it in lazily in this case). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'remote.h')
-rw-r--r--remote.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/remote.h b/remote.h
index 357a909..312b7ca 100644
--- a/remote.h
+++ b/remote.h
@@ -209,6 +209,8 @@ struct branch {
struct refspec **merge;
int merge_nr;
int merge_alloc;
+
+ const char *push_tracking_ref;
};
struct branch *branch_get(const char *name);
@@ -229,6 +231,14 @@ int branch_merge_matches(struct branch *, int n, const char *);
*/
const char *branch_get_upstream(struct branch *branch, struct strbuf *err);
+/**
+ * Return the tracking branch that corresponds to the ref we would push to
+ * given a bare `git push` while `branch` is checked out.
+ *
+ * The return value and `err` conventions match those of `branch_get_upstream`.
+ */
+const char *branch_get_push(struct branch *branch, struct strbuf *err);
+
/* Flags to match_refs. */
enum match_refs_flags {
MATCH_REFS_NONE = 0,