En caso de conflicto, GitHub para Windows me pone en estado de "rebasado", ¿cómo pasar de allí?

Recientemente comencé a usarGitHub para Windows.

Acabo de tener un conflicto. En la línea de comandos sabría cómo manejar esto, pero GitHub para Windows eligió ponerme en un estado con el que no estoy familiarizado:

C:\Users\w\Documents\GitHub\CmisSync [(6026d18...)|REBASE +0 ~1 -0 !1 | +0 ~0 -0 !1]> git status
# Not currently on any branch.
# You are currently rebasing.
#   (fix conflicts and then run "git rebase --continue")
#   (use "git rebase --skip" to skip this patch)
#   (use "git rebase --abort" to check out the original branch)
#
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
...

Arreglé el conflicto, cometí los archivos, pero cuando corrogit push Me dijeron:

fatal: You are not currently on a branch.
To push the history leading to the current (detached HEAD) state now, use

    git push origin HEAD:<name-of-remote-branch>

¿Cuál es la forma recomendada de obtener mis confirmaciones de fusión con el maestro remoto?
yo dudogit push origin HEAD:master logrará esto.

Respuestas a la pregunta(2)

Su respuesta a la pregunta