aboutsummaryrefslogtreecommitdiff
path: root/git/util.py
AgeCommit message (Collapse)Author
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-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-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
2011-01-12OSX Signal handling: removed previous hack to fix it somehow using sleep - ↵Sebastian Thiel
the error was caused by PySide which, when instantiating a QApplication, changed the signal handlers to interrupt, instead of retry operating system calls, which caused git-python to fail subsequently. signal.siginterrupt can be used to fix this behaviour after an QApplication was instatiated.
2011-01-12sleep ui hack fix: removed platform.system() to use sys.platform instead, as ↵Sebastian Thiel
platform.system makes a system call itself
2011-01-06Added the bugfix code as a utility function to be reused wherever this ↵Andreas Gutsche
specific subprocess bug occurs.
2010-11-25Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel
adjusted