Title: [160043] trunk/Tools
- Revision
- 160043
- Author
- [email protected]
- Date
- 2013-12-03 14:38:20 -0800 (Tue, 03 Dec 2013)
Log Message
Add a script to automatically configure a git clone
https://bugs.webkit.org/show_bug.cgi?id=110073
Revert the change to use https for now since git.webkit.org is setup with http.
* Scripts/webkitpy/tool/commands/setupgitclone.py:
(SetupGitClone.execute):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (160042 => 160043)
--- trunk/Tools/ChangeLog 2013-12-03 22:38:13 UTC (rev 160042)
+++ trunk/Tools/ChangeLog 2013-12-03 22:38:20 UTC (rev 160043)
@@ -3,6 +3,16 @@
Add a script to automatically configure a git clone
https://bugs.webkit.org/show_bug.cgi?id=110073
+ Revert the change to use https for now since git.webkit.org is setup with http.
+
+ * Scripts/webkitpy/tool/commands/setupgitclone.py:
+ (SetupGitClone.execute):
+
+2013-12-03 Ryosuke Niwa <[email protected]>
+
+ Add a script to automatically configure a git clone
+ https://bugs.webkit.org/show_bug.cgi?id=110073
+
Reviewed by Benjamin Poulain.
Added "webkit-patch setup-git-clone" to setup a brand new Git clone.
Modified: trunk/Tools/Scripts/webkitpy/tool/commands/setupgitclone.py (160042 => 160043)
--- trunk/Tools/Scripts/webkitpy/tool/commands/setupgitclone.py 2013-12-03 22:38:13 UTC (rev 160042)
+++ trunk/Tools/Scripts/webkitpy/tool/commands/setupgitclone.py 2013-12-03 22:38:20 UTC (rev 160043)
@@ -46,8 +46,8 @@
# FIXME: We shouldn't be using a privatd method
run_git = tool.scm()._run_git
run_git(["pull"])
- run_git(["svn", "init", "--prefix=origin/", "-T", "trunk", "https://svn.webkit.org/repository/webkit"])
- run_git(["config", "--replace", "svn-remote.svn.fetch trunk:refs/remotes/origin/master"])
+ run_git(["svn", "init", "--prefix=origin/", "-T", "trunk", "http://svn.webkit.org/repository/webkit"])
+ run_git(["config", "--replace", "svn-remote.svn.fetch", "trunk:refs/remotes/origin/master"])
run_git(["svn", "fetch"])
original_path = tool.filesystem.abspath(".")
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes