Wednesday, 8 June 2016

get latest code and rebase to local branch



> git branch

> git checkout develop

To fetch all remote branches.
> git fetch origin

To rebase local develop branch with remote develop branch.
> git rebase origin/develop

> git checkout <your branch>

to rebase local branch with develop branch
> git rebase develop


Thank You,
Uma Mahesh.







No comments:

Post a Comment