Skip to content
Snippets Groups Projects
Commit 09e6840e authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

recommend branch over fork

parent e74965d4
No related branches found
No related tags found
No related merge requests found
...@@ -65,10 +65,10 @@ https://git.fmrib.ox.ac.uk/fsl/pytreat-practicals-2020 ...@@ -65,10 +65,10 @@ https://git.fmrib.ox.ac.uk/fsl/pytreat-practicals-2020
Updates to the master branch should occur via merge requests. You can choose Updates to the master branch should occur via merge requests. You can choose
to either work on a branch within this repository, or on a fork of this to either work on a branch within this repository (recommended), or on a fork of this
repository. repository (advanced).
### Using a branch within this repository ### Using a branch within this repository (recommended)
1. Make a local clone of the repository: 1. Make a local clone of the repository:
...@@ -99,7 +99,7 @@ repository. ...@@ -99,7 +99,7 @@ repository.
branch. branch.
### Using a fork of this repository ### Using a fork of this repository (advanced)
1. Fork the upstream repository on gitlab 1. Fork the upstream repository on gitlab
...@@ -142,17 +142,17 @@ repository into your local repository: ...@@ -142,17 +142,17 @@ repository into your local repository:
git fetch --all git fetch --all
# make sure you are on the correct local branch - if you followed the # make sure you are on the correct local branch - if you followed the
# instructions above and are working on a fork of the main repository: # instructions above and are working on a branch within the main repository:
git checkout master
# Or if you are working on a branch within the main repository:
git checkout my_cool_branch git checkout my_cool_branch
# Do this if you are working on a fork of the main repository # Or if you are working on a fork of the main repository:
git merge upstream/master git checkout master
# Or do this if you are working on a branch within the main repository # Do this if you are working on a branch within the main repository
git merge origin/master git merge origin/master
# Or do this if you are working on a fork of the main repository
git merge upstream/master
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment