diff options
author | Daniel Barkalow <barkalow@iabervon.org> | 2009-03-08 21:06:05 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-03-09 15:41:16 -0700 |
commit | a9c37a72c4fbc8537de294d66b05bdfd7f9a4016 (patch) | |
tree | 117ca075b1b84094aaabc9e4145434868ab43228 /refs.h | |
parent | 8321c56b6bae25a2d70790f452df894be536b32c (diff) | |
download | git-a9c37a72c4fbc8537de294d66b05bdfd7f9a4016.tar.gz |
Use a common function to get the pretty name of refs
The result should be consistent between fetch and push, so we ought to
use the same code in both cases, even though it's short.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.h')
-rw-r--r-- | refs.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -79,6 +79,8 @@ extern int for_each_reflog(each_ref_fn, void *); #define CHECK_REF_FORMAT_WILDCARD (-3) extern int check_ref_format(const char *target); +extern const char *prettify_ref(const struct ref *ref); + /** rename ref, return 0 on success **/ extern int rename_ref(const char *oldref, const char *newref, const char *logmsg); |