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

Unified Diff: git_cl.py

Issue 10543151: Add test for git-svn with submodule/merge layout. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Fixed IsSubmoduleMergeCommit regexp Created 8 years, 6 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 | tests/submodule-merge-test.sh » ('j') | tests/submodule-merge-test.sh » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl.py
===================================================================
--- git_cl.py (revision 142011)
+++ git_cl.py (working copy)
@@ -1145,7 +1145,7 @@
# When submodules are added to the repo, we expect there to be a single
# non-git-svn merge commit at remote HEAD with a signature comment.
pattern = '^SVN changes up to revision [0-9]*$'
- cmd = ['rev-list', '--merges', '--grep="%s"' % pattern, '%s^!' % ref]
+ cmd = ['rev-list', '--merges', '--grep=%s' % pattern, '%s^!' % ref]
M-A Ruel 2012/06/14 17:11:05 maybe use '--grep', pattern, ? Especially on Wind
cmp 2012/06/14 17:50:26 Agree about not using ^ to avoid craziness on Wind
szager1 2012/06/15 00:55:32 I did try this out on Windows, and it works fine f
return RunGit(cmd) != ''
« no previous file with comments | « no previous file | tests/submodule-merge-test.sh » ('j') | tests/submodule-merge-test.sh » ('J')

Powered by Google App Engine
This is Rietveld 408576698