aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/git
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2018-08-08 10:28:25 +0200
committerGuido Günther <agx@sigxcpu.org>2018-08-08 10:30:15 +0200
commit26a390a3752ae0fd9e5b22be98a07205c49948ff (patch)
treec69d1f6e739e4243d3fd03e00bca20d51718dd10 /gbp/git
parentb8221b8ec388e54064d90bb7409abfe62f57a307 (diff)
GitRepository: api doc fixes
Gbp-Dch: Ignore
Diffstat (limited to 'gbp/git')
-rw-r--r--gbp/git/repository.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gbp/git/repository.py b/gbp/git/repository.py
index 6b29f5c4..1fc92ee9 100644
--- a/gbp/git/repository.py
+++ b/gbp/git/repository.py
@@ -340,7 +340,7 @@ class GitRepository(object):
@param rev: where to start the branch from
@param force: reset branch HEAD to start point, if it already exists
- If rev is None the branch starts form the current HEAD.
+ If rev is None the branch starts from the current HEAD.
"""
args = GitArgs(branch)
args.add_true(force, '--force')
@@ -610,7 +610,7 @@ class GitRepository(object):
@param local_branch: name of the local branch
@type local_branch: C{str}
- @param upstream: remote/branch, for example origin/master
+ @param upstream: Remote branch in the form remote/branch, e.g. origin/master
@type upstream: C{str}
"""