This is what my current git branches looks like
C:\Users\workspace\my-sme-services>git branch
develop_MVP
* features/FEAT-1245
master
features/FEAT-1245
is derived from develop_MVP
. I have done committing my code into my branch , features/FEAT-1245
Now when i try push my branch , i get the following errors.
C:\Users\workspace\my-rhb-sme-services>git push
fatal: The current branch features/FEAT-1245 has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin features/FEAT-1245
how do i proceed to push this branch across?