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

Unified Diff: gclient_scm.py

Issue 8382030: depot_tools: Add git svn find-rev for safesync_url parsing (commonly LKGR link). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: '' Created 9 years, 2 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
« gclient.py ('K') | « gclient.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_scm.py
===================================================================
--- gclient_scm.py (revision 107077)
+++ gclient_scm.py (working copy)
@@ -482,6 +482,10 @@
base_url = self.url
return base_url[:base_url.rfind('/')] + url
+ def Sha1FromSvnRevision(self, rev):
+ # Returns the git sha1 for the corresponding svn revision.
+ return self._Capture(['svn', 'find-rev', 'r' + rev]).split('\n')[-1]
M-A Ruel 2011/10/25 13:11:14 return self._Capture(['svn', 'find-rev', 'r' + rev
+
def _Clone(self, revision, url, options):
"""Clone a git repository from the given URL.
« gclient.py ('K') | « gclient.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698