diff options
Diffstat (limited to 'docs/gl_objects/branches.py')
-rw-r--r-- | docs/gl_objects/branches.py | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/docs/gl_objects/branches.py b/docs/gl_objects/branches.py deleted file mode 100644 index 431e09d..0000000 --- a/docs/gl_objects/branches.py +++ /dev/null @@ -1,46 +0,0 @@ -# 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 |