Files
deb-python-pygit2/docs/recipes.rst
Richard Möhn 22d1aef50d Remove obsolete git-branch recipe
The git-branch recipe says: »Note that the next release will probably
allow repo.listall_branches().« Concluding from the README,
Repository.listall_branches() was included in some release prior to
0.20.0, so at least that statement is obsolete.

However, since pygit2.org brings up fairly accurate results for a search
on »list all branches«, I figured that the whole recipe isn't needed
anymore. Therefore delete it.
2015-01-05 10:27:43 +01:00

26 lines
1.0 KiB
ReStructuredText

**********************************************************************
pygit2 Recipes
**********************************************************************
A list of some standard git commands and their pygit2 equivalents. This
document is a work in progress, and is organized according to the `git man
page`_.
----------------------------------------------------------------------
High Level Commands
----------------------------------------------------------------------
======================================================================
Main porcelain commands
======================================================================
.. toctree::
:maxdepth: 1
git-init (Create an empty git repository or reinitialize an existing one.) <recipes/git-init>
git-log (Show commit logs.) <recipes/git-log>
git-show (Show various types of objects.) <recipes/git-show>
git-tag (Create, list, delete or verify a tag object signed with GPG.) <recipes/git-tag>
.. _git man page: https://www.kernel.org/pub/software/scm/git/docs/git.html