4
I Use This!
Moderate Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Mar 01, 2025 — Mar 01, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
diff method now checks for git-diff errrs that can easily occour if the repository is bare and if there is no index or second tree specified More... over 16 years ago
Merge branch 'diffing' into improvements More... over 16 years ago
DiffIndex implemented including test More... over 16 years ago
diff: implemented raw diff parsing which appears to be able to handle possible input types, DiffIndex still requires implementation though More... over 16 years ago
resolved cyclic inclusion issue by moving the Diffable interface into the diff module, which probably is the right thing to do anyway More... over 16 years ago
repo: fixed untracked files function which used git-commit before, it can open vim to get a message though which makes the program appear to freeze - using git-status now More... over 16 years ago
implemented diff tests, but will have to move the diff module as it needs to create objects, whose import would create a dependency cycle More... over 16 years ago
Removed a few diff-related test cases that fail now as the respective method is missing - these tests have to be redone in test-diff module accordingly More... over 16 years ago
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... over 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... over 16 years ago
repo.untracked_files added including test More... over 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... over 16 years ago
Merge branch 'repo_interface' into improvements More... over 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... over 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... over 16 years ago
repo.commit_delta_base: removed More... over 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... over 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... over 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... over 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... over 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... over 16 years ago
Initial set of improvementes merged into master, including a class hierarchy redesign and performance improvements More... over 16 years ago
Merge branch 'iteration_and_retrieval' into improvements More... over 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... over 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... over 16 years ago
tree: now reads tress directly by parsing the binary data, allowing it to safe possibly hundreds of command calls More... over 16 years ago
Refs are now truly dynamic - this costs a little bit of (persistent command) work, but assures refs behave as expected More... over 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... over 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... over 16 years ago
Implemented git command facility to keep persistent commands for fast object information retrieval More... over 16 years ago