Changeset 73240 in webkit


Ignore:
Timestamp:
Dec 2, 2010 10:15:37 PM (13 years ago)
Author:
eric@webkit.org
Message:

2010-12-02 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Update the EWSTools scripts to use modern-style git repos
https://bugs.webkit.org/show_bug.cgi?id=50402

  • EWSTools/create-webkit-git:
  • EWSTools/start-commit-queue.sh:
  • EWSTools/start-queue.sh:
Location:
trunk/WebKitTools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r73236 r73240  
     12010-12-02  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Update the EWSTools scripts to use modern-style git repos
     6        https://bugs.webkit.org/show_bug.cgi?id=50402
     7
     8        * EWSTools/create-webkit-git:
     9        * EWSTools/start-commit-queue.sh:
     10        * EWSTools/start-queue.sh:
     11
    1122010-12-02  Simon Fraser  <simon.fraser@apple.com>
    213
  • trunk/WebKitTools/EWSTools/create-webkit-git

    r69708 r73240  
    2828# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2929
     30# These are meant to match the instructions from:
     31# http://trac.webkit.org/wiki/UsingGitWithWebKit
    3032cd /mnt/git
    3133git clone git://git.webkit.org/WebKit.git webkit
    3234cd webkit
     35
    3336git svn init -T trunk http://svn.webkit.org/repository/webkit
    3437git update-ref refs/remotes/trunk origin/master
     38# It's possible that this "config" step can get merged into an earlier setup step.
     39git config --replace-all svn-remote.svn.fetch trunk:refs/remotes/origin/master
     40
     41git fetch
    3542git svn rebase
    36 
  • trunk/WebKitTools/EWSTools/start-commit-queue.sh

    r68421 r73240  
    3434  git clean -f
    3535  git rebase --abort
     36  git fetch
    3637  git svn rebase
    3738  ./WebKitTools/Scripts/webkit-patch commit-queue --no-confirm --exit-after-iteration 10
  • trunk/WebKitTools/EWSTools/start-queue.sh

    r70380 r73240  
    3333  git reset --hard
    3434  git clean -f
     35  git fetch
    3536  git svn rebase
    3637  ./WebKitTools/Scripts/webkit-patch $1 --no-confirm --exit-after-iteration 10
Note: See TracChangeset for help on using the changeset viewer.