I have just ran git merge master on my local branch, resolved the conflicts that it was presenting.
However, git will now no longer allow me to commit to my branch using git push. I have just ran git pull and have been met with this feedback:
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=<remote>/<branch> 4318-niall-activities
I don't want to over right my current work but I want to submit a Pull request with all my current work. Can anyone offer some advice?