diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-19 01:15:15 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-19 17:57:53 -0800 |
commit | e86eb6668ee0c574ba0b6c2c94564d4159a6fcc7 (patch) | |
tree | 7e32d0c99eb983eb2ac15e2ca866d28a7de4fff6 /cache.h | |
parent | 6f71686e0bac2337cdaf9057893a16a47e7d1033 (diff) | |
download | git-e86eb6668ee0c574ba0b6c2c94564d4159a6fcc7.tar.gz git-e86eb6668ee0c574ba0b6c2c94564d4159a6fcc7.tar.xz |
dwim_ref(): Separate name-to-ref DWIM code out.
I'll be using this in another function to figure out what to
pass to resolve_ref().
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -299,6 +299,8 @@ extern int get_sha1_hex(const char *hex, unsigned char *sha1); extern char *sha1_to_hex(const unsigned char *sha1); /* static buffer result! */ extern int read_ref(const char *filename, unsigned char *sha1); extern const char *resolve_ref(const char *path, unsigned char *sha1, int, int *); +extern int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref); + extern int create_symref(const char *ref, const char *refs_heads_master); extern int validate_headref(const char *ref); |