Index: gclient_scm.py |
diff --git a/gclient_scm.py b/gclient_scm.py |
index 1050e28d0f37da54a9b58c5e9f95caee45c3c5e0..b4da53651e31a3ad8cfaf1f6d04f05048fe43d20 100644 |
--- a/gclient_scm.py |
+++ b/gclient_scm.py |
@@ -143,7 +143,7 @@ class SCMWrapper(object): |
print(*args, **kwargs) |
def RunCommand(self, command, options, args, file_list=None): |
- commands = ['cleanup', 'update', 'updatesingle', 'revert', |
+ commands = ['update', 'updatesingle', 'revert', |
'revinfo', 'status', 'diff', 'pack', 'runhooks'] |
if not command in commands: |
@@ -270,13 +270,6 @@ class GitWrapper(SCMWrapper): |
# time-stamp of the currently checked out revision. |
return self._Capture(['log', '-n', '1', '--format=%ai']) |
- @staticmethod |
- def cleanup(options, args, file_list): |
- """'Cleanup' the repo. |
- |
- There's no real git equivalent for the svn cleanup command, do a no-op. |
- """ |
- |
def diff(self, options, _args, _file_list): |
try: |
merge_base = [self._Capture(['merge-base', 'HEAD', self.remote])] |