Files
deb-python-pygit2/docs/references.rst
J. David Ibáñez 979cda9a9a refs: improve API (#213)
Changes:

- Reference.oid and Reference.hex removed
- Now Reference.target can be assigned an oid
2013-04-21 10:46:04 +02:00

1.8 KiB

References

pygit2.Repository.listall_references

pygit2.Repository.lookup_reference

Reference lookup:

>>> all_refs = repo.listall_references()
>>> master_ref = repo.lookup_reference("refs/heads/master")
>>> commit = repo[master_ref.oid]

Reference log:

>>> head = repo.lookup_reference('refs/heads/master')
>>> for entry in head.log():
...     print(entry.message)

Shortcuts:

>>> # These two lines are equivalent
>>> head = repo.head
>>> head = repo.lookup_reference('HEAD').resolve()

The Reference type

pygit2.Reference.name

pygit2.Reference.target

pygit2.Reference.type

pygit2.Reference.delete

pygit2.Reference.rename

pygit2.Reference.resolve

pygit2.Reference.log

The HEAD

pygit2.Repository.head

pygit2.Repository.head_is_detached

pygit2.Repository.head_is_orphaned

The reference log

pygit2.RefLogEntry.oid_new

pygit2.RefLogEntry.oid_old

pygit2.RefLogEntry.message

pygit2.RefLogEntry.committer

Notes

pygit2.Repository.notes

pygit2.Repository.create_note

pygit2.Repository.lookup_note

The Note type

pygit2.Note.annotated_id

pygit2.Note.oid

pygit2.Note.message

pygit2.Note.remove