aboutsummaryrefslogtreecommitdiffstats
path: root/refs.c
diff options
context:
space:
mode:
authorJonathan Tan <jonathantanmy@google.com>2020-09-01 15:28:08 -0700
committerJunio C Hamano <gitster@pobox.com>2020-09-02 14:39:17 -0700
commitec06b05568bb9dbb7333a5974b4512db18395674 (patch)
tree6bd34965bade1919680c023bfa944414929b57de /refs.c
parenta4f66a7876f6979f0a3ac254173cbdaf0a2a55c3 (diff)
downloadgit-ec06b05568bb9dbb7333a5974b4512db18395674.tar.gz
refs: move dwim_ref() to header file
This makes it clear that dwim_ref() is just repo_dwim_ref() without the first parameter. Signed-off-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs.c')
-rw-r--r--refs.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/refs.c b/refs.c
index 84c51a2ce4..e107919b94 100644
--- a/refs.c
+++ b/refs.c
@@ -623,11 +623,6 @@ int repo_dwim_ref(struct repository *r, const char *str, int len,
return refs_found;
}
-int dwim_ref(const char *str, int len, struct object_id *oid, char **ref)
-{
- return repo_dwim_ref(the_repository, str, len, oid, ref);
-}
-
int expand_ref(struct repository *repo, const char *str, int len,
struct object_id *oid, char **ref)
{