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 /refs.h | |
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 'refs.h')
-rw-r--r-- | refs.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -212,6 +212,13 @@ extern int reflog_exists(const char *refname); extern int delete_ref(const char *refname, const unsigned char *old_sha1, unsigned int flags); +/* + * Delete the specified references. If there are any problems, emit + * errors but attempt to keep going (i.e., the deletes are not done in + * an all-or-nothing transaction). + */ +extern int delete_refs(struct string_list *refnames); + /** Delete a reflog */ extern int delete_reflog(const char *refname); |