Lines Matching full:commit
60 COMMIT = COLOR.color(COLOR.CYAN, 'COMMIT')
78 def commit_start(self, commit, commit_summary):
79 """Emit status for new commit.
82 commit: commit hash.
83 commit_summary: commit summary.
85 status_line = '[%s %s] %s' % (self.COMMIT, commit[0:12], commit_summary)
193 hook_name, commit, fixup_func = fixup_func_list[0]
195 if commit != commit_list[0]:
196 # If the commit is not at the top of the stack, git operations might be
209 print('Attempt to fix "%s" for commit "%s" failed: %s' %
210 (hook_name, commit, result),
213 print('Fix successfully applied. Amend the current commit before '
284 for commit in commit_list:
286 os.environ['PREUPLOAD_COMMIT'] = commit
287 diff = rh.git.get_affected_files(commit)
288 desc = rh.git.get_commit_desc(commit)
292 output.commit_start(commit=commit, commit_summary=commit_summary)
296 hook_results = hook(project, commit, desc, diff)
306 fixup_func_list.append((name, commit,