- fork the repository
- clone fork
git clone [email protected]:mystygage/repo.git
- add remote upstream
git remote add upstream git://github.com/user/repo
- switch to master
git pull --ff-only upstream master
git push origin master
- create new feature branch
git ckeckout -b feature/branchName
- stay up to date, then
git rebase upstream/master