W. Trevor King
05c570c3fc
docs/working-copy: Replace 'del index[path]' with index.remove(path)
...
Catch up with b12a5960 (Remove "del index[xxx]" from the API,
2013-05-02).
2014-10-27 21:03:37 -07:00
Carlos Martín Nieto
5ed9eb4228
Add documentation for conflicts and fixup Index
...
Add documentation for the conflicts, and add some for IndexEntry and
Index which went missing during the conversion to cffi.
2014-07-10 09:08:16 +02:00
Carlos Martín Nieto
1d4031bacd
Merge remote-tracking branch 'upstream/master' into development
...
Conflicts:
pygit2/decl.h
test/test_repository.py
2014-06-07 21:38:07 +02:00
Carlos Martín Nieto
9e91a390cc
Index: accept a tree for read_tree()
...
An index may not have an associated repository, so giving it an id in
that case is useless. Raise an error in that case and accept a Tree
object to make the function useful then.
2014-05-27 18:52:05 +02:00
Carlos Martín Nieto
e5f6798f67
Adjust to oid -> id renaming
2014-04-01 19:47:48 +02:00
Carlos Martín Nieto
c43c320c3e
Index: accept adding either a path or an IndexEntry
...
A path is only useful if we have the file on the worktree. Passing an
IndexEntry allows us to add an entry with arbitrary attributes.
2014-01-29 11:46:53 +01:00
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
Nico von Geyso
60c37bd7bf
Fixed: documentation for diff_*()-Methods
2013-05-18 16:19:44 +02:00
J. David Ibáñez
974f16ca69
Re-work the checkout API
...
New API:
Repository.head = refname
Repository.checkout_head(strategy)
Repository.checkout_index(strategy)
Repository.checkout_tree(treeish, strategy)
Changed API:
# Before
Repository.checkout(strategy=GIT_CHECKOUT_SAFE_CREATE, reference=None,
head=False)
# Now
Repository.checkout(refname=None, strategy=GIT_CHECKOUT_SAFE_CREATE)
2013-05-05 21:45:39 +02:00
J. David Ibáñez
32e460fe16
docs: complete and improve organization
2013-04-03 19:09:48 +02:00