summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-04-02 18:44:01 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2014-04-02 20:22:22 +0200
commit67d4997a7e3d95d8ebc9c13481b767efd1d5bb15 (patch)
treec81316ae40c5af824dce39df98a1f33abcae3cd3 /src
parent6f6be8fe4199b5bccad00a9a3ab8b078286c1837 (diff)
downloadlibgit2-67d4997a7e3d95d8ebc9c13481b767efd1d5bb15.tar.gz
remote: mark branch for-merge even if we're unborn
When the current branch is unborn, git will still mark the current branch's upstream for-merge if there is an upstream configuration. The only non-constrived case is cloning from an empty repository which then gains history. origin's master should be marked for-merge. In order to do this, we cannot use the high-level wrappers that expect a reference, as we may not have one. Move over to the internal ones that expect a reference name, which we do have.
Diffstat (limited to 'src')
-rw-r--r--src/remote.c27
1 files changed, 20 insertions, 7 deletions
diff --git a/src/remote.c b/src/remote.c
index 62ee90375..d3e81b973 100644
--- a/src/remote.c
+++ b/src/remote.c
@@ -902,19 +902,32 @@ static int remote_head_for_fetchspec_src(git_remote_head **out, git_vector *upda
static int remote_head_for_ref(git_remote_head **out, git_refspec *spec, git_vector *update_heads, git_reference *ref)
{
git_reference *resolved_ref = NULL;
- git_reference *tracking_ref = NULL;
git_buf remote_name = GIT_BUF_INIT;
+ git_buf upstream_name = GIT_BUF_INIT;
+ git_repository *repo;
+ const char *ref_name;
int error = 0;
assert(out && spec && ref);
*out = NULL;
- if ((error = git_reference_resolve(&resolved_ref, ref)) < 0 ||
- (!git_reference_is_branch(resolved_ref)) ||
- (error = git_branch_upstream(&tracking_ref, resolved_ref)) < 0 ||
- (error = git_refspec_rtransform(&remote_name, spec, git_reference_name(tracking_ref))) < 0) {
- /* Not an error if HEAD is unborn or no tracking branch */
+ repo = git_reference_owner(ref);
+
+ error = git_reference_resolve(&resolved_ref, ref);
+
+ /* If we're in an unborn branch, let's pretend nothing happened */
+ if (error == GIT_ENOTFOUND && git_reference_type(ref) == GIT_REF_SYMBOLIC) {
+ ref_name = git_reference_symbolic_target(ref);
+ error = 0;
+ } else {
+ ref_name = git_reference_name(resolved_ref);
+ }
+
+ if ((!git_reference__is_branch(ref_name)) ||
+ (error = git_branch_upstream_name(&upstream_name, repo, ref_name)) < 0 ||
+ (error = git_refspec_rtransform(&remote_name, spec, upstream_name.ptr)) < 0) {
+ /* Not an error if there is no upstream */
if (error == GIT_ENOTFOUND)
error = 0;
@@ -924,9 +937,9 @@ static int remote_head_for_ref(git_remote_head **out, git_refspec *spec, git_vec
error = remote_head_for_fetchspec_src(out, update_heads, git_buf_cstr(&remote_name));
cleanup:
- git_reference_free(tracking_ref);
git_reference_free(resolved_ref);
git_buf_free(&remote_name);
+ git_buf_free(&upstream_name);
return error;
}