Forked from
R3 / school / courses
265 commits behind the upstream repository.
-
Laurent Heirendt authoredLaurent Heirendt authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
forks.md 1.89 KiB
fork
?
What is a 
Not really ...

fork
?
What is a - In general, when contributing to a repository, you only have read access.
- In other words, you can only pull (unless it is your own repository or access has been granted).
- In general, you cannot write changes. In other words, you do not have push access.
- You have to work on your own copy.
- In other words, you have to work on your own fork.
How to get a fork?
Browse to the original repository and click on the button Fork
:

Time to practice!
Fork the practice repository:
https://github.com/LCSB-BioCore/basic-git-practice
Then, clone your fork to your home directory!

$ $ git clone git@github.com:<yourName>/basic-git-practice.git
Change to the practice directory with:
$ cd basic-git-practice

If you did not configure your SSH key, clone using HTTPS:
$ git clone https://github.com/<yourName>/basic-git-practice.git
Any other rudimentary method such as A note on shortcuts ...
'I simply download the .zip
and unzip it - works like a charm!'
shall be avoided!
Why?
How to update my fork?
As you have your own fork, it will not automatically be updated once the original repository is updated.
You have to update it yourself!
More on that later!