diff options
Diffstat (limited to 'lib/git/refs.py')
-rw-r--r-- | lib/git/refs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/git/refs.py b/lib/git/refs.py index cea3e720..ddf98fc7 100644 --- a/lib/git/refs.py +++ b/lib/git/refs.py @@ -434,7 +434,7 @@ class Head(Reference): _common_path_default = "refs/heads" @classmethod - def create(cls, repo, path, commit='HEAD', force=False, **kwargs ): + def create(cls, repo, path, commit='HEAD', force=False, **kwargs ): """ Create a new head. ``repo`` @@ -560,7 +560,7 @@ class TagReference(Reference): @classmethod def create(cls, repo, path, ref='HEAD', message=None, force=False, **kwargs): """ - Create a new tag object. + Create a new tag reference. ``path`` The name of the tag, i.e. 1.0 or releases/1.0. |