I forked a branch (dev-v4 of bootstrap) made some changes in the new branch (patch-5). Now i have to rebase the patch-5
. How to rebase this branch?
See also: https://github.com/twbs/bootstrap/pull/18068
-- On my local machine a have already run:
git clone git://github.com/bassjobsen/bootstrap.git --branch patch-5
git checkout patch-5
Can i now add twbs/bootstrap
as my remote or should i use bassjobsen/bootstrap
?
update
Well thanks to @upandadam and after reading https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md i found i can do:
git clone git://github.com/bassjobsen/bootstrap.git --branch patch-5
git remote add upstream https://github.com/twbs/bootstrap.git
git pull --rebase upstream
git push origin patch-5