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

Unified Diff: scm.py

Issue 1583003: Change scm.GIT.CaptureStatus to ignore unmerged upstream changes. (Closed)
Patch Set: Created 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scm.py
diff --git a/scm.py b/scm.py
index 1b3b72f2c2cb731ac72a93861039ab108387d199..209e064631b554d0902e3897b7b20600b024dbc9 100644
--- a/scm.py
+++ b/scm.py
@@ -70,7 +70,7 @@ class GIT(object):
@files can be a string (one file) or a list of files.
Returns an array of (status, file) tuples."""
- command = ["diff", "--name-status", "-r", "%s.." % upstream_branch]
+ command = ["diff", "--name-status", "-r", "%s..." % upstream_branch]
if not files:
pass
elif isinstance(files, basestring):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698