Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In Linux terminal, use command

Open Shell terminal.

Change directory to your github folder: (use ls to see where you currently are in the file system and where you can go)

Code Block
cd Documents/2020\ DataSHIELD\ sources/

Here, do a merge:

Info

what is a merge?

Code Block
git merge upstream/v6.0-dev

Now push back to my repository:

Code Block
git push

this will prompt you for your GitHub username/password combo, which you enter, then the computer communicates with the GitHub website to download the appropriate files to your machine.

You can now check this stage has successfully completed: previously it would have said a number of commits behind master (e.g. 77 commits behind master). After the git push, it should be up to date with git master.

Info

(If not, ahead of git master?)

(is this too precarious to mention on a wiki page?

Next, you may want to create your own development branch, instructions found here.