summaryrefslogtreecommitdiff
path: root/TODO
Commit message (Collapse)AuthorAgeFilesLines
* TODO: Removed all entries but left a mesage about where to find the issuee ↵Sebastian Thiel2010-05-041-134/+2
| | | | | | | on lighthouse. README/intro.rst: added information about the new repository at github tree: added marker to indicate that submodules would have to be returned there
* Used this release for a first beta of the 0.2 branch of developmentSebastian Thiel2010-04-071-0/+1
| | | | | TODO: Added info about doc improvements Authors: Added myself as Contributor, and noted the partial rewrite which happend in 0.2
* Added imports for standard locking file classes into the git moduleSebastian Thiel2009-12-161-6/+5
|
* cmd: added clear_cache method now used by test repo decorators to be sure ↵Sebastian Thiel2009-11-051-3/+7
| | | | persistent commands are killed before trying to remove the directory. Unfortunately, it still claims someone has opened the file. handle.exe does not show anyone, so what is happening here ? Is it just a windows odity ? If nothing helps I could just keep the temp data, but lets do some more testing first
* head.checkout method added including testSebastian Thiel2009-11-041-2/+0
|
* initial work on tutorial.rstSebastian Thiel2009-11-041-1/+5
|
* refs: iter_items now imlemented natively for additional performance. We did ↵Sebastian Thiel2009-11-031-3/+4
| | | | not implement the crazy sorting feature found in git-for-each-ref though
* remotes are now retrieved directly by parsing the repository configuration ↵Sebastian Thiel2009-11-031-5/+4
| | | | file. This removes a git command invocation
* Reference.from_path now only creates references, not symbolic refs. ↵Sebastian Thiel2009-11-031-9/+5
| | | | SymbolicReference.from_path creates only symbolic refs. This change was not detected by a test, hence there is room for improvement on the testing field
* Now using git-update-ref and git-symbolic-ref to update references with ↵Sebastian Thiel2009-11-031-5/+7
| | | | reflog support. This should be manually implemented though for more performance, what it does is relatively easy
* object: renamed id attribute to sha as it in fact is always being rewritten ↵Sebastian Thiel2009-11-031-10/+3
| | | | as sha, even if the passed in id was a ref. This is done to assure objects are uniquely identified and will compare correctly
* repo: added create_* and delete_* methods for refs ( head, tag, remote ) as ↵Sebastian Thiel2009-11-031-4/+0
| | | | a convenient shortcut to using the classes manually
* Finished all push tests I could think of so far. More error cases should be ↵Sebastian Thiel2009-11-031-3/+0
| | | | studied, but they would be hard to 'produce'
* Intermediate commit with a few added and improved tests as well as many fixesSebastian Thiel2009-11-031-0/+10
|
* Another attempt to make fetch emit progress information, but in fact its ↵Sebastian Thiel2009-10-281-0/+2
| | | | proven now that this is not happening if stderr is being redirected. A test is in place that will most likely fail in case this ever changes
* Tried to use shallow repository - this works in case it is remote, but ↵Sebastian Thiel2009-10-281-0/+2
| | | | unfortunately, deepening the repository fails if the server is used. This is bad, but a workaround is to create another shared repo which pushes a changes that we fetch into our given repo. This should provide more output to properly test the fetch handling. Harder than I thought
* IterableList: added support for prefix allowing remote.refs.master ↵Sebastian Thiel2009-10-281-0/+5
| | | | | | constructs, previously it was remote.refs['%s/master'%remote] Added first simple test for push support, which shows that much more work is needed on that side to allow just-in-time progress information
* implemented test for rejection handling and fixed a bug when parsing remote ↵Sebastian Thiel2009-10-271-4/+3
| | | | reference paths
* Added testing frame for proper fetch testing to be very sure this works as ↵Sebastian Thiel2009-10-271-0/+7
| | | | expected. Plenty of cases still to be tested
* 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 ;)