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

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -