Skip to content
Snippets Groups Projects
Forked from R3 / school / courses
506 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
gettingStarted.md 675 B

Getting Started

Fork and then clone the tutorial repository https://git-r3lab.uni.lu/R3/school/git/advanced-practice

$ git clone ssh://git@git-r3lab-server.uni.lu:8022/<first.last>/advanced-practice.git

Add a remote upstream

$ cd advanced-practice

# add upstream URL
$ git remote add upstream ssh://git@git-r3lab-server.uni.lu:8022/R3/school/git/advanced-practice.git

Create your own branch myBranch based on the develop branch from usptream using the -b flag

$ git checkout -b <mybranch> upstream/develop

Check the remotes

$ git remote -v