summaryrefslogtreecommitdiff
path: root/git/repo/base.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Fix the Repo commit and tree methods to work with unicode revs.David Black2014-11-121-2/+2
| | | | | | | | | | | | | | | | Signed-off-by: David Black <dblack@atlassian.com>
* | | | Fixed two minor typos.Marios Zindilis2014-06-131-2/+2
|/ / /
* | | Fix typo in untracked_filess13412014-05-091-1/+1
| | |
* | | Fix for untracked_files no longer detected #138Maximiliano Curia2014-05-061-18/+16
| | |
* | | Fixes creating a Repo for a submoduleRemi Rampin2014-04-241-3/+4
| | | | | | | | | | | | Fixes #155.
* | | tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵Sebastian Thiel2014-02-091-735/+735
| |/ |/| | | | | probably a good idea to go a little more pep8 (and fix sins of my youth ;) )
* | Fixed consecutive lines with same blame info not appearing in blame.Mark Nevill2011-07-181-2/+5
|/ | | | | | | | | This fixes a bug when parsing blame -p output: Full commit info headers only appear for the first line from a particular commit, but other lines were ignored as the blame info dict was reset after each line. This patch handles both multiple consecutive lines from a commit and interleaved lines from multiple commits.
* Added conditional usage of the --progress flag to all relevant methods, that ↵Sebastian Thiel2011-06-071-10/+11
| | | | is push, fetch, pull and clone. This allows progress information to be sent in newer git versions without breaking older ones (ideally)
* Add progress tracking for git-clone.jez2011-06-071-6/+17
|
* git.repo.base: substituted all usages of the active_branch property with ↵Sebastian Thiel2011-01-171-4/+4
| | | | self.head.* in order to more safely get the current commit. active_branch would only work on non-detached heads
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-251-0/+753
adjusted