Skip to content

Commit

Permalink
Merge pull request #22 from vxsx/patch-1
Browse files Browse the repository at this point in the history
Little bit more detailed git.incoming
  • Loading branch information
czpython committed Feb 19, 2015
2 parents 0b4115f + 9ce7c50 commit f06a006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dploi_fabric/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def incoming(remote='origin', branch=None):
"""
if not branch:
branch = env.branch
run(("cd %(path)s; git fetch " + remote + " && git log --oneline .." + remote + '/' + branch) % env)
run(("cd %(path)s; git fetch " + remote + " && git log --oneline --pretty=format:'%%C(yellow)%%h%%C(reset) - %%s %%C(bold blue)<%%an>%%C(reset)' .." + remote + '/' + branch) % env)


def local_branch_is_dirty(ignore_untracked_files=True):
Expand Down

0 comments on commit f06a006

Please sign in to comment.