Lines Matching refs:commit
18 from patman import commit
91 self.commit = None # Current commit
116 pstrm.commit = commit.Commit(None)
135 if not self.commit:
137 if warn not in self.commit.warn:
138 self.commit.warn.append(warn)
156 warn = self.series.AddTag(self.commit, line, name, value)
158 self.commit.warn.append(warn)
180 self.commit.AddRtag(rtag_type, who)
184 if self.commit and self.is_log:
185 self.series.AddCommit(self.commit)
186 self.commit = None
217 (self.commit.hash, line))
226 self.series.AddChange(self.change_version, self.commit, change)
230 self.commit.AddChange(self.change_version, change)
351 self.commit.notes += self.section
377 self.commit.notes += self.section
393 self.commit.subject = line
453 if self.commit.change_id:
456 (self.commit.hash, self.commit.change_id, value))
457 self.commit.change_id = value
477 self.commit = commit.Commit(commit_match.group(1))
488 self.commit.AddCc(who.split(','))
494 if (self.is_log or not self.commit or
495 self.commit.CheckDuplicateSignoff(signoff_match.group(1))):
541 log = self.series.MakeChangeLog(self.commit)
543 if self.commit:
544 out += self.commit.notes
569 if not self.commit.change_id:
573 if self.commit.count == -1:
593 parts.append(str(self.commit.count + 1))
596 parts.append(self.commit.change_id)
771 pst.commit = cmt