git - Rebase from one branch to another's specific commit -
i want rebase specific commit: 82c7b6a in branch master.
this doing:
switch branch develop
git checkout develop then rebase master
git rebase master but add git rebase command make go 82c7b6a on master.
just rebase off commit:
git checkout develop git rebase 82c7b6a
Comments
Post a Comment