Lines Matching full:commit
24 commits: List of Commit objects, one for each patch
53 def AddTag(self, commit, line, name, value): argument
69 (commit.hash, line, values, self[name]))
80 "options are %s" % (commit.hash, line, name,
83 def AddCommit(self, commit): argument
84 """Add a commit into our list of commits
86 We create a list of tags in the commit subject also.
89 commit: Commit object to add
91 commit.CheckTags()
92 self.commits.append(commit)
114 commit = self.commits[upto]
116 cc_list = list(self._generated_cc[commit.patch])
139 def MakeChangeLog(self, commit): argument
162 if commit and this_commit != commit:
206 """Make a cc file for us to use for per-commit Cc automation
223 # Look for commit tags (of the form 'xxx:' at the start of the subject)
227 for commit in self.commits:
230 cc += gitutil.BuildEmailList(commit.tags,
232 cc += gitutil.BuildEmailList(commit.cc_list,
237 cc += get_maintainer.GetMaintainer(commit.patch)
245 print(commit.patch, ', '.join(set(cc)), file=fd)
246 self._generated_cc[commit.patch] = cc
259 def AddChange(self, version, commit, info): argument
270 self.changes[version].append([commit, info])