summaryrefslogtreecommitdiff
path: root/docs/gl_objects/branches.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/gl_objects/branches.py')
-rw-r--r--docs/gl_objects/branches.py15
1 files changed, 5 insertions, 10 deletions
diff --git a/docs/gl_objects/branches.py b/docs/gl_objects/branches.py
index b485ee0..b80dfc0 100644
--- a/docs/gl_objects/branches.py
+++ b/docs/gl_objects/branches.py
@@ -1,27 +1,22 @@
# list
-branches = gl.project_branches.list(project_id=1)
-# or
branches = project.branches.list()
# end list
# get
-branch = gl.project_branches.get(project_id=1, id='master')
-# or
branch = project.branches.get('master')
# end get
# create
-branch = gl.project_branches.create({'branch_name': 'feature1',
- 'ref': 'master'},
- project_id=1)
-# or
+# v4
+branch = project.branches.create({'branch': 'feature1',
+ 'ref': 'master'})
+
+#v3
branch = project.branches.create({'branch_name': 'feature1',
'ref': 'master'})
# end create
# delete
-gl.project_branches.delete(project_id=1, id='feature1')
-# or
project.branches.delete('feature1')
# or
branch.delete()