| Age | Commit message (Collapse) | Author |
|
Currently if command is called with as_proces=True, pipes for the
command will not be closed.
This change makes sure to close command file descriptors.
|
|
This fixes a bug when parsing blame -p output: Full commit info headers
only appear for the first line from a particular commit, but other lines
were ignored as the blame info dict was reset after each line.
This patch handles both multiple consecutive lines from a commit and
interleaved lines from multiple commits.
Added real test to verify blame works against the actual commit, not
only a mock of what was produced by blame in old git releases
|
|
tests only work reliably in a patched up version, or the next point release.
|
|
implemented now - depending on the performance, it might actually receive some more work
|
|
enough for the first batch of work
|
|
actually
|
|
inefficient, but can't help it. Basic repo tests don't work as dulwich ignores alternate files
|
|
|
|
least, which implicitly includes pack handling. For the pack specific tests to work, one would need a pack interface though, which is currently not planned to be specifically exposed
|
|
everything from the existing implementation, but one by one things can be reimplmented to use dulwich.
It also shows that py 2.6 is quite plagued from its new feature, which is actually a bug, as objects inability to accept any args makes mixins hard to use ...
|
|
things after all
|
|
module was not found. Its actually a nice mix between decorators which are class types, and a mixin as a metaclass, which applies said decorator. The InstanceDecorator wouldn't actually be needed, but it adds flexibility. Maybe it should be removed ...
|
|
surface while integrating this
|
|
installation puts it into the path, instead of git.exe. Of course we warn about the performance penalty that goes with it. Fortunately, using a wrapped git.exe works when creating pipes to the process, admittedly I was a bit surprised by this.
fixes #26
|
|
|
|
|
|
optimal results in all cases (at least the ones I can test)
pack: now works properly with a sliding memory manager
test_packedodb_pure: fixed very memory hungry implementation by using an iterator. This will of course reduce the measured performance a bit, but 750MB of memory is just a little bit too much for an ordinary test. Maybe it would be alright to just reduce the number of items ... but performance isn't a strength of python after all
|
|
pack: now using the global sliding memory manager. The current implementation uses assumes that packs are small enough to fit into memory right away, where the window size will be about 1 GB, as it never calls use_window() to assure the required offset actually exists. It will need to change to set the window appropriately.
|
|
available
|
|
#24, #25
|
|
useful for tags as well, which might end up somewhere in the refs/remotes space. Its not likely that it will ever be used on a pure Reference instance though, but it is the smallest common base
|
|
including simple test
|
|
thanks to the rpartition method. omg
|
|
|
|
read-only files to be removed on windows as well
|
|
partial or intermixed lines from the pipe. This really shouldn't be, but its windows so it happens
|
|
help the submodule test to work even on windows
|
|
submodule tests to run
|
|
|
|
expect a stream
|
|
Fixed possible issue in test_refs, which occurred in 0.3 previously
|
|
functionality
|
|
resemble their actual location a little more.
Renamed test_git to test_cmd as it tests the git cmd located in git.cmd (not in git.git)
|
|
|
|
|
|
critical bug which caused packed-ref files to be written with native line endings, which made git fail to parse it. I wonder why I never noticed this before, or ignored it. Unbelievable \!
|
|
git versions. This bug existed for quite a while but didn't show up as progress wasn't sent most of the time. All methods that could use a progress will only activate it if a progress is actually given
|
|
everything. Includes an updated config file which includes all the new additions
|
|
The regex comments state that any number of leading tabs or spaces
should be allowed, however the regex was only catching zero or one
space. This allows multiple spaces.
|
|
|
|
any push or fetch operation
|
|
Instead it allows the user to override the type in the classmethod he calls. Otherwise the type of the own repo will be respected
|
|
|
|
|
|
|
|
figured out that the implementation really should be specific to the git command. This leaves the interface open for other implemntations which use a different way to provide feedback (as we do not make assumptions about the format of a feedback line)
|
|
similar functionality as used by the fetch, push and pull methods
|
|
|
|
consolidation changes from master to make clone use the same facilities
|
|
fast with nearly now overhead if the data streams in fast enough (~30 MB/s when writing a pack). This shows that there is huge potential for sending packs, considering that we are actually recompressing them (without deltification). To be faster in future, we could probably just send ref-deltas or full objects as found in the pack without doing any recompression.
|