I have a git feature branch which I created from the development branch with:
git checkout -b CRM-feature-branch develop
I then pushed this to he remote with:
git push origin HEAD
When I commit to this branch locally and do a git status
it doesn't show my branch is ahead.
Is this because I created the branch on the origin with git push origin HEAD
and not git push origin -u CRM-feature-branch
?