Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Clone the source repository from GitHub into a new directory named "WonderSource" or whatever you'd like.
    Code Block
    none
    none
    git clone git://github.com/wocommunityprojectwonder/wonder.git WonderSource
    If "git://" does not work for you then use "http://"
    Note
    titleWonder Committers

    The URL above is the public, read-only URL.
    People with commit privileges for Project Wonder should use: git@github.com:wocommunity/wonder.git

    Warning

    Do not change "git@..." to be your username.

    You should see output something like this:
    No Format
    Cloning into WonderSource...
    remote: Counting objects: 174269, done.
    remote: Compressing objects: 100% (57304/57304), done.
    remote: Total 174269 (delta 107374), reused 173934 (delta 107067)
    Receiving objects: 100% (174269/174269), 137.94 MiB | 8.29 MiB/s, done.
    Resolving deltas: 100% (107374/107374), done.
    
  2. Navigate into the working copy root
    Code Block
    none
    none
    cd WonderSource
    Note
    titleWebObjects 5.3.3 Compatability

    If you are still using old WebObjects 5.3.3, then you need to execute this git command to switch to the branch for WebObjects 5.3.3:

    Code Block
    git checkout --track origin/Wonder_5_0_0_Legacy

    You should get output like this:

    No Format
    Branch Wonder_5_0_0_Legacy set up to track remote branch Wonder_5_0_0_Legacy from origin.
    Switched to a new branch 'Wonder_5_0_0_Legacy'
    

...