| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | |||
| 2011-05-30 | Fixed tests far enough to allow basic repository tests to be applied to any ↵ | Sebastian Thiel | |
| of the new database types. This reduces code duplication to the mere minimum, but allows custom tests to be added on top easily and flexibly | |||
| 2011-05-30 | Finished moving all repository methods to the respective interfaces and ↵ | Sebastian Thiel | |
| implementations. It seems theoretically work together now, although it clearly is much more complex than ever before. The repo package was slimmed down to being a module once again, which is only there for compatability actually | |||
| 2011-05-29 | Intermediate commit with quite some progress in order to put all extra ↵ | Sebastian Thiel | |
| methods on the default Repo implementation into interfaces or something that can be abstracted. It shows that it would indeed be good to keep the differentiation between Repositories which contain an object database as it is clearly easier to setup any combination of repositories that use git and those that do not, with just the addition of one more level of indirection. Lets see how it will end up | |||
| 2011-05-10 | Made repository paths methods a property to be compatible with the existing ↵ | Sebastian Thiel | |
| repo interface. Added submodule interface ... goal is to provide all of the extra repo functionality in custom interfaces | |||
| 2011-05-06 | Started to fix imports - tests still have no chance to work as database ↵ | Sebastian Thiel | |
| changed drastically. Now the actual work begins | |||
| 2011-05-06 | replaced all gitdb strings with git | Sebastian Thiel | |
