diff options
author | Michael Schubert <schu@schu.io> | 2012-12-26 19:16:23 +0100 |
---|---|---|
committer | Michael Schubert <schu@schu.io> | 2013-01-09 17:05:21 +0100 |
commit | abeefbbe18710f86077eb4c5b825255256b8b6bc (patch) | |
tree | c148f738f71d8a9472e3c455096de76221b62ac5 /include/git2/refs.h | |
parent | f85b62840a079fb4bee1838da50421a178850bd3 (diff) | |
download | libgit2-abeefbbe18710f86077eb4c5b825255256b8b6bc.tar.gz |
push: properly handle tags
Currently, push doesn't really handle tags when queueing objects. Fix
it.
Diffstat (limited to 'include/git2/refs.h')
-rw-r--r-- | include/git2/refs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/refs.h b/include/git2/refs.h index 09cf61341..d586917c2 100644 --- a/include/git2/refs.h +++ b/include/git2/refs.h @@ -124,7 +124,7 @@ GIT_EXTERN(int) git_reference_create(git_reference **out, git_repository *repo, * not a symbolic one). * * To find the OID of a symbolic ref, call `git_reference_resolve()` and - * then this function (or maybe use `git_reference_name_to_oid()` to + * then this function (or maybe use `git_reference_name_to_id()` to * directly resolve a reference name all the way through to an OID). * * @param ref The reference |