summaryrefslogtreecommitdiff
path: root/TODO
Commit message (Collapse)AuthorAgeFilesLines
* index.add: Finished implemenation including through testsSebastian Thiel2009-10-261-0/+2
| | | | index.checkout: added simple method allowing to checkout files from the index, including simple test
* Merge branch 'refs' into indexSebastian Thiel2009-10-261-10/+9
|\ | | | | | | | | | | | | | | | | * refs: Added notes about git-update-ref Refs can now set the reference they are pointing to in a controlled fashion by writing their ref file directly Added TagRefernce creation and deletion including tests Implemented head methods: create, delete, rename, including tests refs: added create, delete and rename methods where appropriate. Tests are marked, implementation is needed for most of them
| * Added notes about git-update-refSebastian Thiel2009-10-231-1/+6
| |
| * Refs can now set the reference they are pointing to in a controlled fashion ↵Sebastian Thiel2009-10-231-9/+1
| | | | | | | | by writing their ref file directly
| * Implemented head methods: create, delete, rename, including testsSebastian Thiel2009-10-231-1/+3
| |
* | index.commit: implemented initial version, but in fact some more changes are ↵Sebastian Thiel2009-10-241-0/+11
| | | | | | | | required to have a nice API. Tests are not yet fully done either
* | index.remove implemented including throrough testSebastian Thiel2009-10-231-0/+9
|/
* Added frame for IndexFile add/remove/commit methods and respective test markersSebastian Thiel2009-10-231-0/+3
|
* Added repo.index property including simple test, and additional ideas in the ↵Sebastian Thiel2009-10-231-7/+19
| | | | TODO list
* SymbolicReferences can now change they references safely as I think and well ↵Sebastian Thiel2009-10-231-2/+0
| | | | | | controlled, including test. Added commit method which will return the commit for detached symbolic refs or for normal symbolic refs which is quite convenient
* Adjusted tests to deal with API changesSebastian Thiel2009-10-221-0/+2
|
* Added SymbolicReference and HEAD type to better represent these special ↵Sebastian Thiel2009-10-221-8/+6
| | | | | | | | types of references and allow special handling Head.reset now is an instance method of HEAD type Concatenated all reference specific tests into test_refs started to fix tests breaking now because of changed interface
* Index: Is now diffable and appears to properly implement diffing against ↵Sebastian Thiel2009-10-221-0/+9
| | | | | | | other items as well as the working tree Diff.Diffable: added callback allowing superclasses to preprocess diff arguments Diff.Diff: added eq, ne and hash methods, string methods would be nice
* Added reset method to Head - its a class method due to the very general ↵Sebastian Thiel2009-10-221-12/+3
| | | | nature of the command. Yet I don't really like the way you have to call it as repo has to be ṕassed as first arg
* Merge branch 'index' into improvementsSebastian Thiel2009-10-221-11/+13
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * index: Removed index test marker for custom commits as this boils down to a good way to add files to the index/remove them and make commits which are possibly customized with custom parents index writing now creates a sha on the content making it possible to write valid indices after manually removing or altering entriesgst Implemented merge/resolve handling , but realized that index writing is not yet working properly as it is sha1 checked as well. This explains what my 20 byte 'extension_data' actually is ;) index: Added write_tree method including test index.iter_blobs method added including tests ( which have been improved generally for more coverage ) tree.traverse: Added prune functionality - previously the predciate did both, pruning and preventing to return items Improved testing of index against trees, tests succeed with next commit Initial version of merge including tests for one-way, two-way and tree-way merge index writing added including simple test, improved docs of IndexEntry improved IndexEntry type and added test for parsing of the stage Improved tuple access of EntryIndex class including test, stage and type access still needs to be decoded though Added initial version of the index reading from file - IndexEntry interface is to be improved though, writing needs to be implemented as well Added frame for index implementation and testing
| * index: Added write_tree method including testSebastian Thiel2009-10-211-6/+7
| |
| * Improved testing of index against trees, tests succeed with next commitSebastian Thiel2009-10-211-1/+4
| |
| * Improved tuple access of EntryIndex class including test, stage and type ↵Sebastian Thiel2009-10-201-5/+1
| | | | | | | | access still needs to be decoded though
| * Added frame for index implementation and testingSebastian Thiel2009-10-201-0/+2
| |
* | added Object.data_stream property allowing to stream object data ↵Sebastian Thiel2009-10-221-0/+12
| | | | | | | | directly.Considering the implementation of the git commnd which temporarily keeps it in a cache, it doesnt make a huge diffence as the data is kept in memory while streaming. Only good thing is that it is in a different process so python will never see it if done properly
* | remote: Added fetch, pull, push methods to the interface to make these ↵Sebastian Thiel2009-10-211-0/+6
| | | | | | | | operations more convenient, like repo.remotes.origin.fetch
* | repo.is_dirty: fixed incorrect check of a dirty working tree, previously it ↵Sebastian Thiel2009-10-211-0/+7
|/ | | | would compare HEAD against the working tree, not the index which was intended
* repo.alternates test cheked for correctness and bugfixed - totally mocked ↵Sebastian Thiel2009-10-201-0/+6
| | | | tests bare the risk that things do not work properly outside of the sandbox.
* Added slots to Repo type to be sure we do not accidentally set values on it, ↵Sebastian Thiel2009-10-201-0/+7
| | | | | | and to be more efficient of course ;) TODO: Added info about possible config improvement
* Fixed bare repository handling - bare is now a property to prevent writing itSebastian Thiel2009-10-201-2/+0
|
* Moved specialized methods like dashify, touch and is_git_dir to module to ↵Sebastian Thiel2009-10-201-1/+0
| | | | | | the respective modules that use them fixed repo.daemon_export which did not work anymore due to incorrect touch implementation and wrong property names
* Improved is_dirty including testSebastian Thiel2009-10-201-2/+0
|
* Implemneted IterableLists for refs, commits and remote objects including ↵Sebastian Thiel2009-10-191-2/+0
| | | | simple tests
* Added TODO file to keep track of tasks and in case someone wants to help ↵Sebastian Thiel2009-10-191-0/+57
here and there ;)