summaryrefslogtreecommitdiff
path: root/docs/gl_objects/branches.py
blob: 431e09d9bf2a561757ae4a926cd790b656f5e487 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
# list
branches = project.branches.list()
# end list

# get
branch = project.branches.get('master')
# end get

# create
# v4
branch = project.branches.create({'branch': 'feature1',
                                  'ref': 'master'})

#v3
branch = project.branches.create({'branch_name': 'feature1',
                                  'ref': 'master'})
# end create

# delete
project.branches.delete('feature1')
# or
branch.delete()
# end delete

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

# p_branch list
p_branches = project.protectedbranches.list()
# end p_branch list

# p_branch get
p_branch = project.protectedbranches.get('master')
# end p_branch get

# p_branch create
p_branch = project.protectedbranches.create({'name': '*-stable'})
# end p_branch create

# p_branch delete
project.protectedbranches.delete('*-stable')
# or
p_branch.delete()
# end p_branch delete