0
I Use This!
High Activity

Commits : Listings

Analyzed about 20 hours ago. based on code collected about 22 hours ago.
Sep 26, 2025 — Sep 26, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
tutorial: Fixed incorrect initialization code for bare repo, thank you, Bryan Bishop More... almost 16 years ago
test_refs: fixed failing tests just by making it less strict. It is dependent on the setup of the surrounding repository, hence the amount of ref-types found is actually variable, as long as they get more More... almost 16 years ago
index.reset: updated parameter docs, but most importantly, the method now has better testing for the use of paths during reset. The IndexFile now implements this on its own, which also allows for something equivalent to git-reset --hard -- <paths>, which is not possible in the git command for some probably very good reason More... almost 16 years ago
Fixed bug that would cause the author's email to be a generic default one, instead of the existing and valid. The rest of the ConfigParser handling is correct, as it reads all configuration files available to git see http://github.com/Byron/GitPython/issues#issue/1 More... almost 16 years ago
cmd: improved error handling and debug printing head.reset: will now handle resets with paths much better, especially in the --mixed case, see http://github.com/Byron/GitPython/issues#issue/2 More... almost 16 years ago
docs: untracked_files is a property, but was used like a function, see http://groups.google.com/group/git-python/browse_thread/thread/84ed1835e26a5296?hl=en More... almost 16 years ago
.gitignore will now ignore netbeans projects Fixed test which used the --force flag on move, but there is only a short version (left) it appears More... almost 16 years ago
Updated algorithm paper with the latest changes - thats it for now More... almost 16 years ago
Merge branch 'memory' More... almost 16 years ago
now byte-copying a few chunks where possible when slicing, which gives a few percent of performance More... almost 16 years ago
Removed all debug code, it now runs about as fast as the previous version, but with less memory, still slower than the brute force version though More... almost 16 years ago
goooosh, it took so long to find a tiny nasty bug ... aarggghhh, lots of debug printing still in there, ... this one better be faster than anything else \! More... almost 16 years ago
Well, the virtual movement doesn't work - the algorithm really worked only with a fixed chunk size. Now the only chance we have is to allocate an appropriately sized buffer, and work through it directly. This makes things easier, and will make things work \! More... almost 16 years ago
When using it with deeper chains, it can still crash as it can actually (try to) shrink a chunk. This is currently not handled. In that case, we had to virtually move everything x bytes, which should be much like an offset More... almost 16 years ago
now it appears to work completely, still plenty of debug printing though More... almost 16 years ago
Its much closer to a working state now, but still not quite there. Probably just a small thing More... almost 16 years ago
Implemented apply - there are still some issues to work out though More... almost 16 years ago
Implemented connect_with which includes all the slicing functions, which now operate on the delta stream data directly, its yet to be tested though, and I am afraid of this More... almost 16 years ago
Worked my way up to re-encoding delta chunks, connect_with method still needs some work, intermediate commit More... almost 16 years ago
Brutally made code compile, most of the major functions are still commented out, but it should just be a matter of time until its back and working More... almost 16 years ago
Intermediate commit, working my way through the code, step by step. Didn't even try to compile it yet More... almost 16 years ago
First adjustment to prepare the algorithm to work on deltastreams directly, without an intermediate conversion into far-too-large DeltaChunks. The new style just uses a single index, using one-fourth of the memory More... almost 16 years ago
Adjusted regex to support whitespace - it was a little restrictive previously, although there was absolutely no need for that. See http://byronimo.lighthouseapp.com/projects/51787/tickets/41-diff-regex-lib_git_diffpy-cannot-handle-paths-with-spaces More... almost 16 years ago
Merge branch 'unicode' More... almost 16 years ago
Added unicode handling for author names. They will now be properly encoded into the byte stream, as well as decoded from it More... almost 16 years ago
Added test to verify the actor type can handle and parse unicode if it is passed in test_odb: added more information to the message output More... almost 16 years ago
Fixed bug in http://byronimo.lighthouseapp.com/projects/51787/tickets/44-remoteref-fails-when-there-is-character-in-the-name using supplied patch ( which was manually applied ). Fixed slightly broken test for remote handling More... almost 16 years ago
Updated draft with latest data, finished it by defining future ways to improve the algorithm More... almost 16 years ago
Merge branch 'memcpy' More... almost 16 years ago
removed some debug code More... almost 16 years ago