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

more instructiond

parent 28f99c95
No related branches found
No related tags found
1 merge request!4more instructions
...@@ -65,16 +65,43 @@ https://git.fmrib.ox.ac.uk/fsl/pytreat-practicals-2020 ...@@ -65,16 +65,43 @@ 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 fork of this repository, or on a branch in this to either work on a branch within this repository, on a fork of this
repository. To contribute to the practicals using a fork: repository.
### Using a branch within this repository
1. Make a local clone of the repository:
```
git clone https://git.fmrib.ox.ac.uk/fsl/pytreat-practicals-2020.git
```
2. Create a branch for your work:
```
git checkout -b my_cool_branch origin/master
```
3. Make your changes on this branch.
4. Push your changes to the gitlab repository:
```
git push origin my_cool_branch
```
5. In gitlab, submit a merge request from your branch onto the master
branch.
### Using a fork of this repository
1. Fork the upstream repository on gitlab 1. Fork the upstream repository on gitlab
2. Make a local clone of your fork: 2. Make a local clone of your fork:
``` ```
git clone https://git.fmrib.ox.ac.uk/fsl/pytreat-practicals-2020.git git clone https://git.fmrib.ox.ac.uk/<your_username>/pytreat-practicals-2020.git
``` ```
3. Add the upstream repository as a remote: 3. Add the upstream repository as a remote:
...@@ -95,30 +122,41 @@ repository. To contribute to the practicals using a fork: ...@@ -95,30 +122,41 @@ repository. To contribute to the practicals using a fork:
repository. repository.
Or, to contribute via a branch: ### Updating your local repository
1. Make a local clone of the repository: To bring in the changes that other people have contributed to the main
repository into your local repository:
```
git clone https://git.fmrib.ox.ac.uk/fsl/pytreat-practicals-2020.git
```
2. Create a branch for your work: ```
git fetch --all
``` # make sure you are on the correct local branch - if you followed the
git checkout -b my_cool_branch origin/master # instructions above and are working on a fork of the main repository:
``` git checkout master
3. Make your changes on this branch. # Or if you are working on a branch within the main repository:
git checkout my_cool_branch
4. Push your changes to the gitlab repository: # Do this if you are working on a fork of the main repository
git merge upstream/master
``` # Or do this if you are working on a branch within the main repository
git push origin my_cool_branch git merge origin/master
``` ```
5. In gitlab, submit a merge request from your branch onto the master
branch. > Or, if you are comfortable with git, `rebase` is so much cooler:
>
> ```
> git fetch --all
>
> # replace <branch_name> with your local branch name
> git rebase <remote_name>/master
>
> # replace <remote_name> with the main repository name
> git rebase <remote_name>/master
> ```
You may also wish to install You may also wish to install
......
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