aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-08Improved debug assertion to provide proper path on which to run a git daemonSebastian Thiel
2011-06-08git.version_info now returns exactly 4 numbersSebastian Thiel
2011-06-08log: 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-07Merge branch 'gitdbmerger'Sebastian Thiel
2011-06-07Added 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-07Greatly 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-07Match any number of leading spaces in config valuesJesse 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-07Making comparisons with non-GitPython objects more tolerant.Julien Miotte
2011-06-07The --progress flag will now automatically be used if possible when doing ↵Sebastian Thiel
any push or fetch operation
2011-06-07submodule 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-07Submodule tests are fully back and workingSebastian Thiel
2011-06-07Submodule tests are nearly working. Only root module needs more attentionSebastian Thiel
2011-06-07Fixed index checkout return code parsing to work with latest git versionSebastian Thiel
2011-06-07First 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-07clone 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-07Added version_info property to git commandSebastian Thiel
2011-06-07Fixed 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-06Improved 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-06Streams 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-06Fixed 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-06Moved performance commit object test into the respective subfolder to ↵Sebastian Thiel
indicate what it tests
2011-06-06Fixed performance commit object testingSebastian Thiel
2011-06-06Added 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-06Added PackedDB test with generalized type to allows other implementations to ↵Sebastian Thiel
be tested as well at some point
2011-06-06Fixed packed ODB test, in preparation for separating the type to allow ↵Sebastian Thiel
future implementations to use the test as well
2011-06-06Fixed odb performance testsSebastian Thiel
2011-06-01Fixed symref tests to work on osxSebastian Thiel
2011-06-01Fixed 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-30Fixed 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-30Fixed 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-30Fixed all remaining python repository testsSebastian Thiel
2011-05-30Fixed test_loose.pySebastian Thiel
2011-05-30Fixed test_git.pySebastian Thiel
2011-05-30Fixed pure python implementation to run the default repository testsSebastian Thiel
2011-05-30git 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-30Fixed 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-30Finished 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-29Intermediate 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-10Made 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-06Started to fix imports - tests still have no chance to work as database ↵Sebastian Thiel
changed drastically. Now the actual work begins
2011-05-06replaced all gitdb strings with gitSebastian Thiel
2011-05-06removed gitdb submoduleSebastian Thiel
2011-05-05Added all code from gitdb to gitpython. Next is to make it generally work. ↵Sebastian Thiel
Then the tests will need some work
2011-05-05Added async submodule, formerly required by gitdb (which is still a valid ↵Sebastian Thiel
submodule just yet)
2011-05-05Made most primal imports work, but stopped here as there are many more ↵Sebastian Thiel
changes when doing the merge
2011-04-29Moved rev_parse code into gitdb, this probably broke pretty much here, which ↵Sebastian Thiel
is still to be fixed of course
2011-04-25configparser is now part of gitdb. Test still remains until it was replaced ↵Sebastian Thiel
by its gitdb counterpart through inheritance. All items which are part of gitdb but used by gitpython need their own verification within gitpython
2011-04-07Updated objects to use the ones defined in gitdb as basis. Only the ↵Sebastian Thiel
submodule implementation is left in git-python as it requires some advanced features. No tests where run yet
2011-04-07Removed all parts of the reference implementation which doesn't require the ↵Sebastian Thiel
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
2011-04-05Moved push and fetch methods partly from remote to the gitcmdobjdb ↵Sebastian Thiel
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