summaryrefslogtreecommitdiff
path: root/docs/gl_objects/branches.py
blob: b485ee083cc500a8e46f494c74666ae1fae66491 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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
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()
# end delete

# protect
branch.protect()
branch.unprotect()
# end protect