Files
deb-python-pygit2/docs/working-copy.rst
Carlos Martín Nieto 1cc112c32f docs: adjust to recent changes
It seems I have been forgetting to update the documentation with the
last few  changes, so adjust to the oid -> id renaming and add missing
attributes to the listings.
2014-01-25 04:25:42 +01:00

1.9 KiB

The Index file and the Working copy

pygit2.Repository.index

Index read:

>>> index = repo.index
>>> index.read()
>>> oid = index['path/to/file'].id    # from path to object id
>>> blob = repo[oid]                   # from object id to object

Iterate over all entries of the index:

>>> for entry in index:
...     print entry.path, entry.hex

Index write:

>>> index.add('path/to/file')          # git add
>>> del index['path/to/file']          # git rm
>>> index.write()                      # don't forget to save the changes

The Index type

pygit2.Index.add

pygit2.Index.remove

pygit2.Index.clear

pygit2.Index.read

pygit2.Index.write

pygit2.Index.read_tree

pygit2.Index.write_tree

pygit2.Index.diff_to_tree

pygit2.Index.diff_to_workdir

The IndexEntry type

pygit2.IndexEntry.oid

pygit2.IndexEntry.hex

pygit2.IndexEntry.path

pygit2.IndexEntry.mode

Status

pygit2.Repository.status

pygit2.Repository.status_file

Inspect the status of the repository:

>>> from pygit2 import GIT_STATUS_CURRENT
>>> status = repo.status()
>>> for filepath, flags in status.items():
...     if flags != GIT_STATUS_CURRENT:
...         print "Filepath %s isn't clean" % filepath

Checkout

pygit2.Repository.checkout

Lower level API:

pygit2.Repository.checkout_head

pygit2.Repository.checkout_tree

pygit2.Repository.checkout_index