Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Improved debug assertion to provide proper path on which to run a git daemon | Sebastian Thiel | 2011-06-08 | 1 | -2/+4 | |
| | ||||||
* | git.version_info now returns exactly 4 numbers | Sebastian Thiel | 2011-06-08 | 1 | -2/+4 | |
| | ||||||
* | log: non-existing logs no longer throw an exception, but are ignored. Fixed ↵ | Sebastian Thiel | 2011-06-08 | 3 | -5/+17 | |
| | | | | 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 \! | |||||
* | Merge branch 'gitdbmerger' | Sebastian Thiel | 2011-06-07 | 122 | -2935/+10035 | |
|\ | ||||||
| * | Added additional opcodes to remote progress to make it compatible to newer ↵ | Sebastian Thiel | 2011-06-07 | 3 | -16/+26 | |
| | | | | | | | | 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 | |||||
| * | Greatly improved robustness of config parser - it can now take pretty much ↵ | Sebastian Thiel | 2011-06-07 | 3 | -10/+23 | |
| | | | | | | | | everything. Includes an updated config file which includes all the new additions | |||||
| * | Match any number of leading spaces in config values | Jesse Keating | 2011-06-07 | 1 | -1/+1 | |
| | | | | | | | | | | | | 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. | |||||
| * | Making comparisons with non-GitPython objects more tolerant. | Julien Miotte | 2011-06-07 | 1 | -0/+4 | |
| | | ||||||
| * | The --progress flag will now automatically be used if possible when doing ↵ | Sebastian Thiel | 2011-06-07 | 1 | -4/+14 | |
| | | | | | | | | any push or fetch operation | |||||
| * | submodule now doesn't use hardcoded repository implementations anymore. ↵ | Sebastian Thiel | 2011-06-07 | 1 | -5/+9 | |
| | | | | | | | | Instead it allows the user to override the type in the classmethod he calls. Otherwise the type of the own repo will be respected | |||||
| * | Submodule tests are fully back and working | Sebastian Thiel | 2011-06-07 | 1 | -18/+28 | |
| | | ||||||
| * | Submodule tests are nearly working. Only root module needs more attention | Sebastian Thiel | 2011-06-07 | 2 | -14/+36 | |
| | | ||||||
| * | Fixed index checkout return code parsing to work with latest git version | Sebastian Thiel | 2011-06-07 | 1 | -0/+4 | |
| | | ||||||
| * | First run in order to fix the remote handling. Cleaned up interfaces and ↵ | Sebastian Thiel | 2011-06-07 | 9 | -630/+642 | |
| | | | | | | | | 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) | |||||
| * | clone and clone_from methods now support the RemoteProgress interface, using ↵ | Sebastian Thiel | 2011-06-07 | 3 | -105/+115 | |
| | | | | | | | | similar functionality as used by the fetch, push and pull methods | |||||
| * | Added version_info property to git command | Sebastian Thiel | 2011-06-07 | 3 | -6/+33 | |
| | | ||||||
| * | Fixed fetch/push/pull implementation. Next up is to integrate the ↵ | Sebastian Thiel | 2011-06-07 | 2 | -14/+25 | |
| | | | | | | | | consolidation changes from master to make clone use the same facilities | |||||
| * | Improved pack writing test to show that the pack generation can be lightning ↵ | Sebastian Thiel | 2011-06-06 | 1 | -21/+28 | |
| | | | | | | | | 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. | |||||
| * | Streams returned by git cmd db are now containing all the data right away. ↵ | Sebastian Thiel | 2011-06-06 | 2 | -4/+14 | |
| | | | | | | | | This could cause several copies to exist, and makes the cmd implementation a bad choice if big files are involved | |||||
| * | Fixed performance pack writing tests. As they are actually depent on the ↵ | Sebastian Thiel | 2011-06-06 | 2 | -80/+76 | |
| | | | | | | | | database (as streams have to be decompressed, it should be redesigned to have multiple database implementations) | |||||
| * | Moved performance commit object test into the respective subfolder to ↵ | Sebastian Thiel | 2011-06-06 | 2 | -1/+2 | |
| | | | | | | | | indicate what it tests | |||||
| * | Fixed performance commit object testing | Sebastian Thiel | 2011-06-06 | 3 | -8/+10 | |
| | | ||||||
| * | Added loose object writing and reading performance tessts, in pure and ↵ | Sebastian Thiel | 2011-06-06 | 5 | -312/+166 | |
| | | | | | | | | 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 | |||||
| * | Added PackedDB test with generalized type to allows other implementations to ↵ | Sebastian Thiel | 2011-06-06 | 3 | -7/+21 | |
| | | | | | | | | be tested as well at some point | |||||
| * | Fixed packed ODB test, in preparation for separating the type to allow ↵ | Sebastian Thiel | 2011-06-06 | 3 | -6/+21 | |
| | | | | | | | | future implementations to use the test as well | |||||
| * | Fixed odb performance tests | Sebastian Thiel | 2011-06-06 | 8 | -94/+102 | |
| | | ||||||
| * | Fixed symref tests to work on osx | Sebastian Thiel | 2011-06-01 | 1 | -3/+2 | |
| | | ||||||
| * | Fixed ref-log related issue in the test suite to assure it will not give ↵ | Sebastian Thiel | 2011-06-01 | 1 | -2/+9 | |
| | | | | | | | | false positives in repositories that are freshly checked out | |||||
| * | Fixed remaining tests as good as possible. remote/fetch/pull and submodule ↵ | Sebastian Thiel | 2011-05-30 | 18 | -137/+191 | |
| | | | | | | | | 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 | |||||
| * | Fixed all of the object tests, except for the submodule handling which needs ↵ | Sebastian Thiel | 2011-05-30 | 6 | -15/+41 | |
| | | | | | | | | 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 | |||||
| * | Fixed all remaining python repository tests | Sebastian Thiel | 2011-05-30 | 9 | -64/+77 | |
| | | ||||||
| * | Fixed test_loose.py | Sebastian Thiel | 2011-05-30 | 1 | -3/+5 | |
| | | ||||||
| * | Fixed test_git.py | Sebastian Thiel | 2011-05-30 | 1 | -8/+12 | |
| | | ||||||
| * | Fixed pure python implementation to run the default repository tests | Sebastian Thiel | 2011-05-30 | 3 | -12/+11 | |
| | | ||||||
| * | git cmd implementation of repository appears to work, at least this is what ↵ | Sebastian Thiel | 2011-05-30 | 21 | -83/+118 | |
| | | | | | | | | the test suggests. Pure python implementation still has some trouble, but this should be very fixable | |||||
| * | Fixed tests far enough to allow basic repository tests to be applied to any ↵ | Sebastian Thiel | 2011-05-30 | 21 | -65/+152 | |
| | | | | | | | | 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 | |||||
| * | Finished moving all repository methods to the respective interfaces and ↵ | Sebastian Thiel | 2011-05-30 | 12 | -863/+936 | |
| | | | | | | | | | | | | 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 | |||||
| * | Intermediate commit with quite some progress in order to put all extra ↵ | Sebastian Thiel | 2011-05-29 | 11 | -689/+650 | |
| | | | | | | | | 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 | |||||
| * | Made repository paths methods a property to be compatible with the existing ↵ | Sebastian Thiel | 2011-05-10 | 14 | -80/+234 | |
| | | | | | | | | repo interface. Added submodule interface ... goal is to provide all of the extra repo functionality in custom interfaces | |||||
| * | Started to fix imports - tests still have no chance to work as database ↵ | Sebastian Thiel | 2011-05-06 | 42 | -91/+1461 | |
| | | | | | | | | changed drastically. Now the actual work begins | |||||
| * | replaced all gitdb strings with git | Sebastian Thiel | 2011-05-06 | 52 | -144/+148 | |
| | | ||||||
| * | removed gitdb submodule | Sebastian Thiel | 2011-05-06 | 2 | -4/+0 | |
| | | ||||||
| * | Added all code from gitdb to gitpython. Next is to make it generally work. ↵ | Sebastian Thiel | 2011-05-05 | 64 | -197/+9917 | |
| | | | | | | | | Then the tests will need some work | |||||
| * | Added async submodule, formerly required by gitdb (which is still a valid ↵ | Sebastian Thiel | 2011-05-05 | 3 | -3/+6 | |
| | | | | | | | | submodule just yet) | |||||
| * | Made most primal imports work, but stopped here as there are many more ↵ | Sebastian Thiel | 2011-05-05 | 9 | -15/+20 | |
| | | | | | | | | changes when doing the merge | |||||
| * | Moved rev_parse code into gitdb, this probably broke pretty much here, which ↵ | Sebastian Thiel | 2011-04-29 | 10 | -332/+20 | |
| | | | | | | | | is still to be fixed of course | |||||
| * | configparser is now part of gitdb. Test still remains until it was replaced ↵ | Sebastian Thiel | 2011-04-25 | 3 | -1785/+3 | |
| | | | | | | | | by its gitdb counterpart through inheritance. All items which are part of gitdb but used by gitpython need their own verification within gitpython | |||||
| * | Updated objects to use the ones defined in gitdb as basis. Only the ↵ | Sebastian Thiel | 2011-04-07 | 14 | -1068/+37 | |
| | | | | | | | | submodule implementation is left in git-python as it requires some advanced features. No tests where run yet | |||||
| * | Removed all parts of the reference implementation which doesn't require the ↵ | Sebastian Thiel | 2011-04-07 | 13 | -1473/+86 | |
| | | | | | | | | git command. everything else was moved to GitDB. None of the tests is yet expected to run, although git-python should have less trouble getting the tests back up running than GitDB. plenty of code needs to be de-duplicated though in case of the tests, which will be some work | |||||
| * | Moved push and fetch methods partly from remote to the gitcmdobjdb ↵ | Sebastian Thiel | 2011-04-05 | 5 | -337/+393 | |
|/ | | | | implementation, including related types. It doesn't yet work, and the omnipresence of the repo imposes a problem right now, as the required ref functionality is not yet part of the gitdb specification. theoretically, the whole ref implementation has to move into gitdb |