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:
authorCarlos Martín Nieto <cmn@dwim.me>2013-05-04 18:32:58 +0400
committerCarlos Martín Nieto <cmn@dwim.me>2013-05-11 13:20:38 +0400
commit2b562c3a1edf0f521bdb7adf23e524d5a8389b15 (patch)
treea5ac3a5b361eb21fbcf77fb4c05ce574ab194c65 /src/remote.c
parent95727245fd4f08aa77d1077901976ab3bd7472e1 (diff)
refs: remove the OID/SYMBOLIC filtering
Nobody should ever be using anything other than ALL at this level, so remove the option altogether. As part of this, git_reference_foreach_glob is now implemented in the frontend using an iterator. Backends will later regain the ability of doing the glob filtering in the backend.
Diffstat (limited to 'src/remote.c')
-rw-r--r--src/remote.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/remote.c b/src/remote.c
index 6eaaf8b49..10bffec44 100644
--- a/src/remote.c
+++ b/src/remote.c
@@ -1297,7 +1297,6 @@ static int rename_remote_references(
if (git_reference_foreach(
repo,
- GIT_REF_LISTALL,
rename_cb,
&refnames) < 0)
goto cleanup;