summaryrefslogtreecommitdiff
path: root/docs/gl_objects/branches.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2018-05-20 09:01:05 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2018-05-20 09:01:05 +0200
commit5292ffb366f97e4dc611dfd49a1dca7d1e934f4c (patch)
tree220659b39e0e5384504de3c63bbff003ad50eec2 /docs/gl_objects/branches.py
parent2c342372814bbac2203d7b4c0f2cd32541bab979 (diff)
downloadgitlab-5292ffb366f97e4dc611dfd49a1dca7d1e934f4c.tar.gz
[docs] Rework the examples pages
* Get rid of the .py files and bring all the python examples in the RST files * Fix a few things
Diffstat (limited to 'docs/gl_objects/branches.py')
-rw-r--r--docs/gl_objects/branches.py46
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