Em conflito, o GitHub for Windows me coloca em estado de "rebase", como ir a partir daí?

Eu comecei recentemente a usarGitHub para Windows.

Eu acabei de ter um conflito. Na linha de comando eu saberia como lidar com isso, mas o GitHub for Windows escolheu me colocar em um estado que eu não conheço:

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)
...

Eu consertei o conflito, cometi os arquivos, mas quando corrogit push Disseram-me:

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>

Qual é a maneira recomendada de obter minhas confirmações de mesclagem para o mestre remoto?
eu duvidogit push origin HEAD:master vai conseguir isso.

questionAnswers(2)

yourAnswerToTheQuestion