Skip to content

Development

shadow_walker edited this page Nov 21, 2015 · 27 revisions

⚠️ Under Construction


Getting Started

Gorgon project is maintained under version control, Git, and is hosted on GitHub. In order to contribute to Gorgon development or to be added as a team member or outside collaborator, you will need a GitHub account.

  1. GitHub account setup
  • Get a GitHub account.
  • Upload your SSH public key to your GitHub account (recommended). More details.
  1. Get the code
  • Via ssh: git clone --recursive [email protected]:GorgonCryoEM/Gorgon.git OR
  • Via https: git clone --recursive https://github.com/GorgonCryoEM/Gorgon.git

Updating

git fetch
git pull
git submodule update --init

Checking out

Branch off develop.

???
git branch -t develop
git checkout -b topic-branch develop

Uploading

???
git push origin topic-branch

Then, make a pull request and make sure to choose develop as the base branch and your topic-branch as the compare branch.

Clone this wiki locally