Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Just walked through instructions. Cloning our repo, develop is the default branch and is brought down on clone (no need to create a new branch named develop). And "git merge upstream" results in "merge: upstream - not something we can merge" so I also removed this line.

...

  1. Fork the Sage-Bionetworks SynapseWebClient repository into your own GitHub account: https://help.github.com/articles/fork-a-repo

  2. Clone the SynapseWebClient project down to your computer: git clone https://github.com/[YOUR GITHUB NAME]/SynapseWebClient.git
  3. Change into the proper directory with: cd SynapseWebClient
  4.  Set up upstream with: git remote add upstream https://github.com/Sage-Bionetworks/SynapseWebClientBring down origin's develop branch locally: git checkout -b develop remotes/origin/develop
  5. Fetch and merge changes from the Sage Bionetworks repo, which was named upstream: 
    git fetch upstream
    git merge upstream
  6. Follow the instructions on the Platform Bootstrap
  7. Now, from an up-to-date clone of Synapse-Repository-Services on your local box:

    mvn clean install -Dorg.sagebionetworks.database.drop.schema=true

...