OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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 |
OLD | NEW |