You are viewing the latest unreleased documentation 3.9.0.dev37. You can switch to a stable version.

Set up Your Fork#

First you follow the instructions for Making Your own Copy (fork) of Iris.

Overview#

git clone git@github.com:your-user-name/iris.git
cd iris
git remote add upstream git@github.com/SciTools/iris.git

In Detail#

Clone Your Fork#

  1. Clone your fork to the local computer with git clone git@github.com:your-user-name/iris.git

  2. Change directory to your new repo: cd iris. Then git branch -a to show you all branches. You’ll get something like:

    * main
    remotes/origin/main
    

    This tells you that you are currently on the main branch, and that you also have a remote connection to origin/main. What remote repository is remote/origin? Try git remote -v to see the URLs for the remote. They will point to your github fork.

    Now you want to connect to the upstream Iris github repository, so you can merge in changes from trunk.

Linking Your Repository to the Upstream Repo#

cd iris
git remote add upstream git://github.com/SciTools/iris.git

upstream here is just the arbitrary name we’re using to refer to the main Iris repository at Iris github.

Note that we’ve used git:// for the URL rather than git@. The git:// URL is read only. This means we that we can’t accidentally (or deliberately) write to the upstream repo, and we are only going to use it to merge into our own code.

Just for your own satisfaction, show yourself that you now have a new ‘remote’, with git remote -v, giving you something like:

upstream     git://github.com/SciTools/iris.git (fetch)
upstream     git://github.com/SciTools/iris.git (push)
origin       git@github.com:your-user-name/iris.git (fetch)
origin       git@github.com:your-user-name/iris.git (push)