X Tutup
Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1 KB

File metadata and controls

44 lines (30 loc) · 1 KB

Protected branches

You can define a list of protected branch names on a repository. Names can use wildcards (*).

References

Examples

Get the list of protected branches for a project:

.. literalinclude:: branches.py
   :start-after: # p_branch list
   :end-before: # end p_branch list

Get a single protected branch:

.. literalinclude:: branches.py
   :start-after: # p_branch get
   :end-before: # end p_branch get

Create a protected branch:

.. literalinclude:: branches.py
   :start-after: # p_branch create
   :end-before: # end p_branch create

Delete a protected branch:

.. literalinclude:: branches.py
   :start-after: # p_branch delete
   :end-before: # end p_branch delete
X Tutup