There was an error while loading. Please reload this page.
Main Branch - Reserved for Spring 2.x Dev stream
Branch - 1.0.x
Process:
git fetch origin git checkout -b 1.0.x origin/1.0.x # if local branch doesn't exist git pull origin 1.0.x git checkout -b abc # create working branch git add . git commit -S -m "Your commit" git push -u origin abc # publish working branch, auto-create remote abc # GitHub PR: # Base: 1.0.x # Compare: abc git checkout 1.0.x git pull origin 1.0.x # after PR merge
Recommendation: