I have currently one of the project it contain more branches. master branch not yet merger long time. So i want switched to master with latest code.
Can you please g
Do you want to merge a 'develop' branch into master?
git checkout master git merge develop
Or do you want to merge the changes from master into your development branch?
git checkout develop git merge master