I'm new to git and have updated my branch from master by:
git checkout master
git pull
git checkout my-feature
git merge master
I had a merge conflict and fixed the file manually.
My question is what now? How do I commit my fixes (if that is the correct term here) and ensure my branch is up-to-date so that I can push to Github and continue working? My branch is in its merging state (my-branch|MERGING
), can I git add
and commit in this state?