Solucionado (ver solução)
Solucionado
(ver solução)
3
respostas

git rebase

Já resolvi o conflito e dei git add, após isso dei git status

git status

rebase in progress; onto 54d17ec
You are currently rebasing branch 'desenvolvimento' on '54d17ec'.
  (all conflicts fixed: run "git rebase --continue")

nothing to commit, working tree clean

git rebase --continue

Nick@Nick-PC MINGW64 /d/xampp/htdocs/alura-estudo/curso-git1 (desenvolvimento|REBASE 1/2)
$ git rebase --continue
Applying: Incremento de um em romano I na tag title
No changes - did you forget to use 'git add'?
If there is nothing left to stage, chances are that something else
already introduced the same changes; you might want to skip this patch.

Resolve all conflicts manually, mark them as resolved with
"git add/rm <conflicted_files>", then run "git rebase --continue".
You can instead skip this commit: run "git rebase --skip".
To abort and get back to the state before "git rebase", run "git rebase --abort".

Por algum motivo ele não identificou que eu dei git add, porem ele sugere que se n tiver mais nada a ser feito eu posso pular essa etapa, está correto oq fiz?

3 respostas
solução!

Olá, Nícolas!

Acho que o x da questão está nessa mensagem:

If there is nothing left to stage, chances are that something else already introduced the same changes; you might want to skip this patch.

Pelo jeito, as mesmas mudanças já foram introduzidas. Só resta fazer o:

git rebase --skip

O Git continuará o Rebase.

Sim, foi o que fiz, só achei meio contraditório as respostas do git.

Mas tudo bem, obrigado pela ajuda ^^

É bem estranho mesmo!

O pessoal reclama do Git ter pouca usabilidade. E é verdade mesmo!

Não estamos sozinhos: https://twitter.com/TeaDrivenDev/status/521712339285209090

:)