Lines Matching refs:commit
55 def AddTag(self, commit, line, name, value): argument
74 (commit.hash, line, values, self[name]))
85 "options are %s" % (commit.hash, line, name,
89 def AddCommit(self, commit): argument
97 commit.CheckTags()
98 self.commits.append(commit)
120 commit = self.commits[upto]
122 cc_list = list(self._generated_cc[commit.patch])
145 def MakeChangeLog(self, commit): argument
170 if commit:
171 for version, changelist in commit.changes.items():
172 changes[version] += [[commit, text] for text in changelist]
188 if commit and this_commit != commit:
260 for commit in self.commits:
263 cc += gitutil.BuildEmailList(commit.tags,
265 cc += gitutil.BuildEmailList(commit.cc_list,
271 cc += get_maintainer.GetMaintainer(dir_list, commit.patch)
278 print(commit.patch, '\0'.join(sorted(set(cc))), file=fd)
279 self._generated_cc[commit.patch] = cc
292 def AddChange(self, version, commit, info): argument
303 self.changes[version].append([commit, info])