Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Cunz <Sascha@BabbelBox.org>2013-01-06 17:30:52 +0400
committerSascha Cunz <Sascha@BabbelBox.org>2013-01-06 17:30:52 +0400
commit2ba6f3c7f133e8f37450e6c56a0d798f82536ff6 (patch)
tree3fe430ebb1406778fd6f35c07af29d52b449e2c0 /src/clone.c
parentf9b4adbe54de57431d56e0877325383d489e5196 (diff)
Allow to clone repositories that don't have a `master` branch
Before this, we error out from `reference_matches_remote_head` if the reference we're searching for does not exist. Since we explicitly check if master is existing in `update_head_to_remote` and error out if it doesn't, a repository without master branch could not be cloned. In fact this was later clobbered by what is fixed in #1194. However, this patch introduces a `found` member in `head_info` and sets it accordingly. That also saves us from checking the string length of `branchname` a few times.
Diffstat (limited to 'src/clone.c')
-rw-r--r--src/clone.c26
1 files changed, 16 insertions, 10 deletions
diff --git a/src/clone.c b/src/clone.c
index ff586a68a..0cf7b4dcc 100644
--- a/src/clone.c
+++ b/src/clone.c
@@ -105,6 +105,7 @@ struct head_info {
git_oid remote_head_oid;
git_buf branchname;
const git_refspec *refspec;
+ bool found;
};
static int reference_matches_remote_head(
@@ -119,16 +120,16 @@ static int reference_matches_remote_head(
*/
/* Stop looking if we've already found a match */
- if (git_buf_len(&head_info->branchname) > 0)
+ if (head_info->found)
return 0;
if (git_reference_name_to_id(
&oid,
head_info->repo,
reference_name) < 0) {
- /* TODO: How to handle not found references?
- */
- return -1;
+ /* If the reference doesn't exists, it obviously cannot match the expected oid. */
+ giterr_clear();
+ return 0;
}
if (git_oid_cmp(&head_info->remote_head_oid, &oid) == 0) {
@@ -139,10 +140,14 @@ static int reference_matches_remote_head(
reference_name) < 0)
return -1;
- if (git_buf_sets(
- &head_info->branchname,
- git_buf_cstr(&head_info->branchname) + strlen(GIT_REFS_HEADS_DIR)) < 0)
- return -1;
+ if (git_buf_len(&head_info->branchname) > 0) {
+ if (git_buf_sets(
+ &head_info->branchname,
+ git_buf_cstr(&head_info->branchname) + strlen(GIT_REFS_HEADS_DIR)) < 0)
+ return -1;
+
+ head_info->found = 1;
+ }
}
return 0;
@@ -207,6 +212,7 @@ static int update_head_to_remote(git_repository *repo, git_remote *remote)
git_buf_init(&head_info.branchname, 16);
head_info.repo = repo;
head_info.refspec = git_remote_fetchspec(remote);
+ head_info.found = 0;
/* Determine the remote tracking reference name from the local master */
if (git_refspec_transform_r(
@@ -219,7 +225,7 @@ static int update_head_to_remote(git_repository *repo, git_remote *remote)
if (reference_matches_remote_head(git_buf_cstr(&remote_master_name), &head_info) < 0)
goto cleanup;
- if (git_buf_len(&head_info.branchname) > 0) {
+ if (head_info.found) {
retcode = update_head_to_new_branch(
repo,
&head_info.remote_head_oid,
@@ -236,7 +242,7 @@ static int update_head_to_remote(git_repository *repo, git_remote *remote)
&head_info) < 0)
goto cleanup;
- if (git_buf_len(&head_info.branchname) > 0) {
+ if (head_info.found) {
retcode = update_head_to_new_branch(
repo,
&head_info.remote_head_oid,