Fork the main repo (button top right).
git clone <the fork repo>
git remote add upstream <the main repo>
git remote -v
<- see the remotes you have now
Most work will be done against origin
. e.g. git push origin my-branch
When you're ready to do a PR, do a PR from the fork repo to the main repo.
To get new code from upstream:
git pull upstream <branch>