I have a codebase in a branch developmentV2. From developmentV2 I have created a branch rahulV2 as below.
git checkout -b rahulV2 developmentV2 git push origin/rahulV2 I have made some changes in rahulV2 branch.Before pushing it to rahulV2 branch I want to have updated code from developmentV2 if anyone has pushed some code to developmentV2.
So I stash my changes in rahulV2.
git stash if I will use
git pull it will get pulled from origin/rahulV2.
I want to pull developementV2 code so that rahulV2 will be updated and after pushing the code I can merge my rahulV2 changes to developmentV2 branch.
Please help me out with this.