summaryrefslogtreecommitdiff
path: root/lib/git/repo/base.py
Commit message (Collapse)AuthorAgeFilesLines
* Adjusted clone method to allow static classmethod clone ( using clone_from ) ↵Sebastian Thiel2010-07-071-18/+29
| | | | | | as well as the previous instance method clone to keep it compatible Fixed small bug in test code
* Adjusted previous object creators to use the rev_parse method directly. ↵Sebastian Thiel2010-07-071-13/+6
| | | | rev_parse could be adjusted not to return Objects anymore, providing better performance for those who just want a sha only. On the other hand, the method is high-level and should be convenient to use as well, its a starting point for more usually, hence its unlikely to call it in tight loops
* Initially working implementation of short-sha parsing and interpretation, ↵Sebastian Thiel2010-07-071-2/+1
| | | | thanks to new gitdb functionality
* Made repo.py a package to allow better localization of functions and ↵Sebastian Thiel2010-07-061-0/+695
utilities - the repo module got rather large