Index: tools/push-to-trunk/git_recipes.py |
diff --git a/tools/push-to-trunk/git_recipes.py b/tools/push-to-trunk/git_recipes.py |
index d57dc848f0bab77d0464586a51b7a6a3d7b37035..1b1887b60e1115e84866d4dc69f72afafd180300 100644 |
--- a/tools/push-to-trunk/git_recipes.py |
+++ b/tools/push-to-trunk/git_recipes.py |
@@ -235,6 +235,10 @@ class GitRecipesMixin(object): |
self.Git( |
"cl dcommit -f --bypass-hooks", retry_on=lambda x: x is None, **kwargs) |
+ def GitCLLand(self, **kwargs): |
+ self.Git( |
+ "cl land -f --bypass-hooks", retry_on=lambda x: x is None, **kwargs) |
+ |
def GitDiff(self, loc1, loc2, **kwargs): |
return self.Git(MakeArgs(["diff", loc1, loc2]), **kwargs) |