Boa noite a todos! Na hora de fazer alteracoes, eu fiz alteracoes na Master e dei um commit. Depois que vi que estava na branch errada (a correta seria a titulo), mudei para a titulo e fiz as alteracoes corretas e dei um commit tambem! Entao o meu feito gerou um conflito entre as branches. Vi aqui no forum, uma solucao para esse caso. Segui os passos (https://cursos.alura.com.br/forum/topico-erro-git-rebase-104734) e apareceu o erro abaixo. O que faco agora? Existe alguma maneira de eu voltar alguns commits atras e comecar de novo?
git status
rebase in progress; onto 41de482
You are currently rebasing branch 'master' on '41de482'.
(all conflicts fixed: run "git rebase --continue")
nothing to commit, working tree clean
lima@lima80:.../git-e-github/vinicius$ git rebase --continue
Applying: Curso mudado para minusculo
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".
lima@lima80:.../git-e-github/vinicius$ git status
rebase in progress; onto 41de482
You are currently rebasing branch 'master' on '41de482'.
(all conflicts fixed: run "git rebase --continue")
Grato a todos!