Wednesday, June 17, 2020

git: rebase a branch with upstream master

Rebase with upstream master:

$ git branch
* min_version_required

$ git remote add upstream https://github.com/openshift/installer
$ git fetch upstream
$ git rebase upstream/master

Update the changes in the github tree:
$ git push -f

No comments:

Post a Comment