diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2015-06-22 16:02:55 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-06-22 13:17:09 -0700 |
commit | 98ffd5ff67d1097280e3c16accde6de86d3ece3d (patch) | |
tree | b910d88f96b9b9a40ad25bf27823b3b7fba6daae /builtin/remote.c | |
parent | fc67a0825caaff4eb5d4afdcc626263c8d214f36 (diff) | |
download | git-98ffd5ff67d1097280e3c16accde6de86d3ece3d.tar.gz |
delete_refs(): new function for the refs API
Move the function remove_branches() from builtin/remote.c to refs.c,
rename it to delete_refs(), and make it public.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/remote.c')
-rw-r--r-- | builtin/remote.c | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/builtin/remote.c b/builtin/remote.c index 53b8e13975..c8dc724956 100644 --- a/builtin/remote.c +++ b/builtin/remote.c @@ -746,25 +746,6 @@ static int mv(int argc, const char **argv) return 0; } -static int remove_branches(struct string_list *branches) -{ - struct strbuf err = STRBUF_INIT; - int i, result = 0; - - if (repack_without_refs(branches, &err)) - result |= error("%s", err.buf); - strbuf_release(&err); - - for (i = 0; i < branches->nr; i++) { - const char *refname = branches->items[i].string; - - if (delete_ref(refname, NULL, 0)) - result |= error(_("Could not remove branch %s"), refname); - } - - return result; -} - static int rm(int argc, const char **argv) { struct option options[] = { @@ -821,7 +802,7 @@ static int rm(int argc, const char **argv) strbuf_release(&buf); if (!result) - result = remove_branches(&branches); + result = delete_refs(&branches); string_list_clear(&branches, 0); if (skipped.nr) { |