4
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 18 hours ago. based on code collected about 18 hours ago.
Dec 31, 2024 — Dec 31, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
added Diffable interface to objects.base, its used by Commit and Tree objects. Diff class has been prepared to process raw input, but its not yet more than a frame More... about 16 years ago
Fixed object bug that would cause object ids not to be resolved to sha's as this was assumed - now there is a test for it as well repo: removed diff and commit_diff methods, added 'head' property returning the current head as Reference object More... about 16 years ago
repo.untracked_files added including test More... about 16 years ago
Merging latest improvements including a revamped Repo interface before more changes are to be done on the way diffing is handled More... about 16 years ago
Merge branch 'repo_interface' into improvements More... about 16 years ago
Improved archive function by allowing it to directly write to an output stream - previously it would cache everything to memory and try to provide zipping functionality itself gitcmd: allows the output stream to be set explicitly which is mainly useful for archiving operations More... about 16 years ago
repo: made init and clone methods less specific, previously they wanted to do it 'barely' only. New method names closely follow the default git command names More... about 16 years ago
repo.commit_delta_base: removed More... about 16 years ago
Object can now create objects of the proper type in case one attempts to create an object directly - this feature is used in several places now, allowing for additional type-checking More... about 16 years ago
repo: removed commits_between but added a note about how this can be achieved using the iter_commits method; reorganized methods within the type as a start for more interface changes More... about 16 years ago
Added Commit.iter_parents to iterate all parents Renamed Commit.commits to iter_commits repo: assured proper use of the terms revision ( rev ) and reference ( ref ) More... about 16 years ago
repo: removed a few methods because of redundancy or because it will be obsolete once the interface overhaul is finished. This commit is just intermediate More... about 16 years ago
All times are not stored as time_struct, but as simple int to consume less memory time imports cleaned up and mostly removed as they were not required (anymore) More... about 16 years ago
Initial set of improvementes merged into master, including a class hierarchy redesign and performance improvements More... about 16 years ago
Merge branch 'iteration_and_retrieval' into improvements More... about 16 years ago
test_performance: module containing benchmarks to get an idea of the achieved throughput repo.commits: max_count is None by default moved benchmark-like test from test_commit to test_performance More... about 16 years ago
Removed plenty of mocked tree tests as they cannot work anymore with persistent commands that require stdin AND binary data - not even an adapter would help here. These tests will have to be replaced. test_commit: Improved efficiency of traversal test More... about 16 years ago
tree: now reads tress directly by parsing the binary data, allowing it to safe possibly hundreds of command calls More... about 16 years ago
Refs are now truly dynamic - this costs a little bit of (persistent command) work, but assures refs behave as expected More... about 16 years ago
persistent command signature changed to also return the hexsha from a possible input ref - the objects pointed to by refs are now baked on demand - perhaps it should change to always be re-retrieved using a property as it is relatively fast - this way refs can always be cached More... about 16 years ago
test_blob: removed many redundant tests that would fail now as the mock cannot handle the complexity of the command backend All objects but Tree now use the persistent command to read their object information - Trees get binary data and would need their own pretty-printing or they need to parse the data themselves which is my favorite More... about 16 years ago
Implemented git command facility to keep persistent commands for fast object information retrieval More... about 16 years ago
test: Added time-consuming test which could also be a benchmark in fact - currently it cause hundreds of command invocations which is slow Fixed issue with trees not properly initialized with their default mode _set_cache_: some objects checked whether the attribute was within their __slots__ although it should have been accessed through its class More... about 16 years ago
cmd: added option to return the process directly, allowing to read the output directly from the output stream commit: now reads commit information directly from the output stream of the process by implementing its iterator method repo: removed log method as it was redundant ( equal to the commits method ) More... about 16 years ago
added Iterable interface to Ref type More... about 16 years ago
renamed find_all to list_all, changed commit to use iterable interface in preparation for command changes More... about 16 years ago
Added base for all iteratable objects More... about 16 years ago
unified name of utils module, recently it was named util and utils in different packages More... about 16 years ago
tree: renamed content_from_string to _from_string to make it private. Removed tests that were testing that method More... about 16 years ago
tree: now behaves like a list with string indexing functionality - using a dict as cache is a problem as the tree is ordered, added blobs, trees and traverse method repo: remove blob function as blobs are created directly or iterated - primitve types should not clutter the repo interface More... about 16 years ago