Lines Matching full:revision
294 argument_names = "REVISION [REVISIONS] REASON"
296 def _commit_info(self, revision):
297 commit_info = self._tool.checkout().commit_info_for_revision(revision)
310 for revision in str(args[0]).split():
311 if revision.isdigit():
312 revision_list.append(int(revision))
314 raise ScriptError(message="Invalid svn revision number: " + revision)
317 # We use the earliest revision for the bug info
324 "revision": earliest_revision,
335 help_text = "Revert the given revision(s) in the working copy and prepare ChangeLogs with revert reason"
337 Applies the inverse diff for the provided revision(s).
350 help_text = "Creates a bug to track the broken SVN revision(s) and uploads a rollout patch."
370 state["bug_title"] = "REGRESSION(r%s): %s" % (state["revision"], state["reason"])
371 state["bug_description"] = "%s broke the build:\n%s" % (urls.view_revision_url(state["revision"]), state["reason"])
390 help_text = "Revert the given revision(s) in the working copy and optionally commit the revert and re-open the original bug"
392 Applies the inverse diff for the provided revision.