| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-07-05 | util: added global sliding memory manager | Sebastian Thiel | |
| 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. | |||
| 2011-07-05 | Added smmap as submodule, package initialization adjusted to assure it is ↵ | Sebastian Thiel | |
| available | |||
| 2011-07-04 | Fetch info can now deal much better with non-default ref specs, see #23, ↵ | Sebastian Thiel | |
| #24, #25 | |||
| 2011-07-04 | Basic remote functionality moved to Reference type, as it can in fact be ↵ | Sebastian Thiel | |
| 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 | |||
| 2011-07-04 | refs: added constructor flag to allow refs to be instatiated from any path, ↵ | Sebastian Thiel | |
| including simple test | |||
| 2011-06-13 | Fixed implementation of _version_info which didn't work for python 2.4 ↵ | Sebastian Thiel | |
| thanks to the rpartition method. omg | |||
| 2011-06-13 | fixed submodule test to work on windows | Sebastian Thiel | |
| 2011-06-13 | Submodule now uses a specialized method to remove its trees to allow ↵ | Sebastian Thiel | |
| read-only files to be removed on windows as well | |||
| 2011-06-13 | Made remote line parsing more stable. On windows it can be that we encounter ↵ | Sebastian Thiel | |
| partial or intermixed lines from the pipe. This really shouldn't be, but its windows so it happens | |||
| 2011-06-13 | test_submodule: Will now load everything into memory if smmap is present, to ↵ | Sebastian Thiel | |
| help the submodule test to work even on windows | |||
| 2011-06-13 | root submodule: Added parent_commit parameter for convenience. Fixed ↵ | Sebastian Thiel | |
| submodule tests to run | |||
| 2011-06-13 | Fixed submodule tests to go with either the old or the new version of gitdb | Sebastian Thiel | |
| 2011-06-08 | Fixed critical issue that would cause a string to be passed to methods that ↵ | Sebastian Thiel | |
| expect a stream | |||
| 2011-06-08 | symbolic reference handles different types for comparison more gracefully. ↵ | Sebastian Thiel | |
| Fixed possible issue in test_refs, which occurred in 0.3 previously | |||
| 2011-06-08 | util: Added test for iterable list, and implemented __contains__ and __del__ ↵ | Sebastian Thiel | |
| functionality | |||
| 2011-06-08 | pre-emptively moved all reference related tests into own package, to ↵ | Sebastian Thiel | |
| 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) | |||
| 2011-06-08 | Improved debug assertion to provide proper path on which to run a git daemon | Sebastian Thiel | |
| 2011-06-08 | git.version_info now returns exactly 4 numbers | Sebastian Thiel | |
| 2011-06-08 | log: non-existing logs no longer throw an exception, but are ignored. Fixed ↵ | Sebastian Thiel | |
| 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 \! | |||
| 2011-06-07 | Added additional opcodes to remote progress to make it compatible to newer ↵ | Sebastian Thiel | |
| 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 | |||
| 2011-06-07 | Greatly improved robustness of config parser - it can now take pretty much ↵ | Sebastian Thiel | |
| everything. Includes an updated config file which includes all the new additions | |||
| 2011-06-07 | Match any number of leading spaces in config values | Jesse Keating | |
| 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. | |||
| 2011-06-07 | Making comparisons with non-GitPython objects more tolerant. | Julien Miotte | |
| 2011-06-07 | The --progress flag will now automatically be used if possible when doing ↵ | Sebastian Thiel | |
| any push or fetch operation | |||
| 2011-06-07 | submodule now doesn't use hardcoded repository implementations anymore. ↵ | Sebastian Thiel | |
| Instead it allows the user to override the type in the classmethod he calls. Otherwise the type of the own repo will be respected | |||
| 2011-06-07 | Submodule tests are fully back and working | Sebastian Thiel | |
| 2011-06-07 | Submodule tests are nearly working. Only root module needs more attention | Sebastian Thiel | |
| 2011-06-07 | Fixed index checkout return code parsing to work with latest git version | Sebastian Thiel | |
| 2011-06-07 | First run in order to fix the remote handling. Cleaned up interfaces and ↵ | Sebastian Thiel | |
| 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) | |||
| 2011-06-07 | clone and clone_from methods now support the RemoteProgress interface, using ↵ | Sebastian Thiel | |
| similar functionality as used by the fetch, push and pull methods | |||
| 2011-06-07 | Added version_info property to git command | Sebastian Thiel | |
| 2011-06-07 | Fixed fetch/push/pull implementation. Next up is to integrate the ↵ | Sebastian Thiel | |
| consolidation changes from master to make clone use the same facilities | |||
| 2011-06-06 | Improved pack writing test to show that the pack generation can be lightning ↵ | Sebastian Thiel | |
| 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. | |||
| 2011-06-06 | Streams returned by git cmd db are now containing all the data right away. ↵ | Sebastian Thiel | |
| This could cause several copies to exist, and makes the cmd implementation a bad choice if big files are involved | |||
| 2011-06-06 | Fixed performance pack writing tests. As they are actually depent on the ↵ | Sebastian Thiel | |
| database (as streams have to be decompressed, it should be redesigned to have multiple database implementations) | |||
| 2011-06-06 | Moved performance commit object test into the respective subfolder to ↵ | Sebastian Thiel | |
| indicate what it tests | |||
| 2011-06-06 | Fixed performance commit object testing | Sebastian Thiel | |
| 2011-06-06 | Added loose object writing and reading performance tessts, in pure and ↵ | Sebastian Thiel | |
| command implementations. The previous performance test was truncated a bit as it compared directly with the git hash_object write performance. This is out, and if we wanted it we could implement it , but its actually slower for us | |||
| 2011-06-06 | Added PackedDB test with generalized type to allows other implementations to ↵ | Sebastian Thiel | |
| be tested as well at some point | |||
| 2011-06-06 | Fixed packed ODB test, in preparation for separating the type to allow ↵ | Sebastian Thiel | |
| future implementations to use the test as well | |||
| 2011-06-06 | Fixed odb performance tests | Sebastian Thiel | |
| 2011-06-01 | Fixed symref tests to work on osx | Sebastian Thiel | |
| 2011-06-01 | Fixed ref-log related issue in the test suite to assure it will not give ↵ | Sebastian Thiel | |
| false positives in repositories that are freshly checked out | |||
| 2011-05-30 | Fixed remaining tests as good as possible. remote/fetch/pull and submodule ↵ | Sebastian Thiel | |
| tests need some more work. Also, the tests need to be reorganized and move closer to their actual location within gitpython. Hence the refs tests go to git.test.refs, etc | |||
| 2011-05-30 | Fixed all of the object tests, except for the submodule handling which needs ↵ | Sebastian Thiel | |
| more work as the amount of submodules changed in fact. Maybe I should just generate a test repository with gitpython as submodule to get the recursion depth required to satisfy the test | |||
| 2011-05-30 | Fixed all remaining python repository tests | Sebastian Thiel | |
| 2011-05-30 | Fixed test_loose.py | Sebastian Thiel | |
| 2011-05-30 | Fixed test_git.py | Sebastian Thiel | |
| 2011-05-30 | Fixed pure python implementation to run the default repository tests | Sebastian Thiel | |
| 2011-05-30 | git cmd implementation of repository appears to work, at least this is what ↵ | Sebastian Thiel | |
| the test suggests. Pure python implementation still has some trouble, but this should be very fixable | |||
