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

Side by Side Diff: scm.py

Issue 11262057: git_cl sanity checks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Use explicit calls to merge-base in diff commands Created 8 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 unified diff | Download patch | Annotate | Revision Log
« git_cl.py ('K') | « git_cl.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """SCM-specific utility classes.""" 5 """SCM-specific utility classes."""
6 6
7 import cStringIO 7 import cStringIO
8 import glob 8 import glob
9 import logging 9 import logging
10 import os 10 import os
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 def CaptureStatus(files, cwd, upstream_branch): 105 def CaptureStatus(files, cwd, upstream_branch):
106 """Returns git status. 106 """Returns git status.
107 107
108 @files can be a string (one file) or a list of files. 108 @files can be a string (one file) or a list of files.
109 109
110 Returns an array of (status, file) tuples.""" 110 Returns an array of (status, file) tuples."""
111 if upstream_branch is None: 111 if upstream_branch is None:
112 upstream_branch = GIT.GetUpstreamBranch(cwd) 112 upstream_branch = GIT.GetUpstreamBranch(cwd)
113 if upstream_branch is None: 113 if upstream_branch is None:
114 raise gclient_utils.Error('Cannot determine upstream branch') 114 raise gclient_utils.Error('Cannot determine upstream branch')
115 command = ['diff', '--name-status', '-r', '%s...' % upstream_branch] 115 upstream_branch += '...'
M-A Ruel 2012/10/28 20:53:02 A quick "git gs CaptureStatus" tells me this will
Isaac (away) 2012/10/28 21:16:42 I wanted to make this change to avoid an extra mer
116 command = ['diff', '--name-status', '-r', upstream_branch]
116 if not files: 117 if not files:
117 pass 118 pass
118 elif isinstance(files, basestring): 119 elif isinstance(files, basestring):
119 command.append(files) 120 command.append(files)
120 else: 121 else:
121 command.extend(files) 122 command.extend(files)
122 status = GIT.Capture(command, cwd).rstrip() 123 status = GIT.Capture(command, cwd).rstrip()
123 results = [] 124 results = []
124 if status: 125 if status:
125 for statusline in status.splitlines(): 126 for statusline in status.splitlines():
(...skipping 970 matching lines...) Expand 10 before | Expand all | Expand 10 after
1096 # revert, like for properties. 1097 # revert, like for properties.
1097 if not os.path.isdir(cwd): 1098 if not os.path.isdir(cwd):
1098 # '.' was deleted. It's not worth continuing. 1099 # '.' was deleted. It's not worth continuing.
1099 return 1100 return
1100 try: 1101 try:
1101 SVN.Capture(['revert', file_status[1]], cwd=cwd) 1102 SVN.Capture(['revert', file_status[1]], cwd=cwd)
1102 except subprocess2.CalledProcessError: 1103 except subprocess2.CalledProcessError:
1103 if not os.path.exists(file_path): 1104 if not os.path.exists(file_path):
1104 continue 1105 continue
1105 raise 1106 raise
OLDNEW
« git_cl.py ('K') | « git_cl.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698