diff options
author | Christian <cgumpert@users.noreply.github.com> | 2017-03-21 06:50:20 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-03-21 06:50:20 +0100 |
commit | 22bf12827387cb1719bacae6c0c745cd768eee6c (patch) | |
tree | 80fd22ecc95ec6f41fb442a0ddf5d6b551822ee0 /docs/gl_objects/commits.py | |
parent | 8677f1c0250e9ab6b1e16da17d593101128cf057 (diff) | |
download | gitlab-22bf12827387cb1719bacae6c0c745cd768eee6c.tar.gz |
Provide API wrapper for cherry picking commits (#236)
Diffstat (limited to 'docs/gl_objects/commits.py')
-rw-r--r-- | docs/gl_objects/commits.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/gl_objects/commits.py b/docs/gl_objects/commits.py index 2ed66f5..0d47edb 100644 --- a/docs/gl_objects/commits.py +++ b/docs/gl_objects/commits.py @@ -39,6 +39,10 @@ commit = project.commits.get('e3d5a71b') diff = commit.diff() # end diff +# cherry +commit.cherry_pick(branch='target_branch') +# end cherry + # comments list comments = gl.project_commit_comments.list(project_id=1, commit_id='master') # or |