提交 79e4d8a9 编写于 作者: M Michael Haggerty 提交者: Junio C Hamano

repack_without_refs(): make function private

It is no longer called from outside of the refs module. Also move its
docstring and change it to imperative voice.
Signed-off-by: NMichael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: NJunio C Hamano <gitster@pobox.com>
上级 a087b432
......@@ -2736,7 +2736,14 @@ int pack_refs(unsigned int flags)
return 0;
}
int repack_without_refs(struct string_list *refnames, struct strbuf *err)
/*
* Rewrite the packed-refs file, omitting any refs listed in
* 'refnames'. On error, leave packed-refs unchanged, write an error
* message to 'err', and return a nonzero value.
*
* The refs in 'refnames' needn't be sorted. `err` must not be NULL.
*/
static int repack_without_refs(struct string_list *refnames, struct strbuf *err)
{
struct ref_dir *packed;
struct string_list_item *refname;
......
......@@ -154,17 +154,6 @@ extern void rollback_packed_refs(void);
*/
int pack_refs(unsigned int flags);
/*
* Rewrite the packed-refs file, omitting any refs listed in
* 'refnames'. On error, packed-refs will be unchanged, the return
* value is nonzero, and a message about the error is written to the
* 'err' strbuf.
*
* The refs in 'refnames' needn't be sorted. `err` must not be NULL.
*/
extern int repack_without_refs(struct string_list *refnames,
struct strbuf *err);
extern int ref_exists(const char *);
extern int is_branch(const char *refname);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册