diff --git a/dploi_fabric/git.py b/dploi_fabric/git.py index d3fc328..b1114ba 100644 --- a/dploi_fabric/git.py +++ b/dploi_fabric/git.py @@ -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):