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

Unified Diff: git_freezer.py

Issue 184253003: Add git-reup and friends (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@freeze_thaw
Patch Set: minor fixes Created 6 years, 9 months 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
Index: git_freezer.py
diff --git a/git_freezer.py b/git_freezer.py
index 6e28b3e342b066f582fd46c48153f90a8038ebf9..075ebd65e3ff1ac0aeef8b6e91c4fcf45ab0a69f 100755
--- a/git_freezer.py
+++ b/git_freezer.py
@@ -1,4 +1,8 @@
#!/usr/local/bin/python
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
import sys
import re
import optparse
@@ -6,7 +10,7 @@ import optparse
import subcommand
import subprocess2
-from git_common import run, stream
+from git_common import run, run_stream
FREEZE = 'FREEZE'
SECTIONS = {
@@ -38,7 +42,7 @@ def freeze():
def thaw():
took_action = False
- for sha in (s.strip() for s in stream('rev-list', 'HEAD').xreadlines()):
+ for sha in (s.strip() for s in run_stream('rev-list', 'HEAD').xreadlines()):
msg = run('show', '--format=%f%b', '-s', 'HEAD')
match = MATCHER.match(msg)
if not match:

Powered by Google App Engine
This is Rietveld 408576698