Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Unified Diff: tools/push-to-trunk/push_to_trunk.py

Issue 725503003: Fix landing candidate pushes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/push-to-trunk/git_recipes.py ('k') | tools/push-to-trunk/test_scripts.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/push-to-trunk/push_to_trunk.py
diff --git a/tools/push-to-trunk/push_to_trunk.py b/tools/push-to-trunk/push_to_trunk.py
index e873232d184daec9340a997099b4d12c843df950..6e821f2a0bff9b8f31c784750227ed517555aa69 100755
--- a/tools/push-to-trunk/push_to_trunk.py
+++ b/tools/push-to-trunk/push_to_trunk.py
@@ -51,11 +51,6 @@ class Preparation(Step):
self.PrepareBranch()
self.DeleteBranch(self.Config("TRUNKBRANCH"))
- # Allow directly pushing to candidates.
- if not self.Git("config --get remote.origin.push").strip():
- self.Git("config --add remote.origin.push "
- "refs/remotes/origin/candidates:refs/pending/heads/candidates")
tandrii(chromium) 2014/11/13 13:18:50 yeah :(
-
class FreshBranch(Step):
MESSAGE = "Create a fresh branch."
@@ -355,7 +350,7 @@ class Land(Step):
MESSAGE = "Land the patch."
def RunStep(self):
- self.vc.Land()
+ self.vc.CLLand()
class TagRevision(Step):
« no previous file with comments | « tools/push-to-trunk/git_recipes.py ('k') | tools/push-to-trunk/test_scripts.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698