Fix doc typos by samuela · Pull Request #733 · gitpython-developers/GitPython
:parm rev: :param rev: revision specifier, see git-rev-parse for viable options. If None, the active branch will be used.
:parm paths: :param paths: is an optional path or a list of paths to limit the returned commits to Commits that do not contain that path or the paths will not be returned.
:parm kwargs: :param kwargs: Arguments to be passed to git-rev-list - common ones are max_count and skip
:parm alts: :param alts: is the array of string paths representing the alternates at which git should look for objects, i.e. /home/user/repo/.git/objects
:parm rev: revision specifier, see git-rev-parse for viable options. :param rev: revision specifier, see git-rev-parse for viable options. :return: lazy iterator of BlameEntry tuples, where the commit indicates the commit to blame for the line, and range indicates a span of line numbers in the resulting file.
:parm rev: revision specifier, see git-rev-parse for viable options. :param rev: revision specifier, see git-rev-parse for viable options. :return: list: [git.Commit, list: [<line>]] A list of tuples associating a Commit object with a list of lines that
:parm mkdir: :param mkdir: if specified will create the repository directory if it doesn't already exists. Creates the directory with a mode=0755. Only effective if a path is explicitly given
:parm kwargs: :param kwargs: keyword arguments serving as additional options to the git-init command
:return: ``git.Repo`` (the newly created repo)"""
:parm ostream: file compatible stream object to which the archive will be written as bytes :parm treeish: is the treeish name/id, defaults to active branch :parm prefix: is the optional prefix to prepend to each filename in the archive :parm kwargs: Additional arguments passed to git-archive :param ostream: file compatible stream object to which the archive will be written as bytes :param treeish: is the treeish name/id, defaults to active branch :param prefix: is the optional prefix to prepend to each filename in the archive :param kwargs: Additional arguments passed to git-archive
* Use the 'format' argument to define the kind of format. Use specialized ostreams to write any format supported by python.