DEV Community

Discussion on: I'm a Git Master, Ask Me Anything

Collapse
 
elonmusk profile image
Mt

I have my Develop branch then I created a feature/nav-bar branch, my code needs to be rebased because there are new changes in Develop branch, how do I do that... so let's say I am in my feature/nav-bar branch in that "folder" should I run "git rebase develop" ?

Collapse
 
gonedark profile image
Jason McCreary

Yes. From the feature branch, you would run git rebase develop to fast forward your branch with the latest change and replay your work. Check out my previous post for a closer look at git rebase.

You don't have to be in any folder, just the repo.