I have \'develop\' and \'InitialPomChanges\' branches. I want to copy all the contents of develop branch to InitialPomChanges branch.
You can run
git checkout develop git branch -D InitialPomChanges git checkout -b InitialPomChanges
This will erase InitialPomChanges branch and will create a new InitialPomChanges branch with all the contents of develop.