Redefino meu mestre local para uma confirmação por este comando:
git reset --hard e3f1e37
Quando eu insiro o $ git status
comando, o terminal diz:
# On branch master
# Your branch is behind 'origin/master' by 7 commits, and can be fast-forwarded.
# (use "git pull" to update your local branch)
#
nothing to commit, working directory clean
Como também desejo redefinir a origem / cabeçalho, efetue o checkout para origin / master:
$ git checkout origin/master
Note: checking out 'origin/master'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:
git checkout -b new_branch_name
HEAD is now at 2aef1de... master problem fixed for master. its okay now.
e redefina o cabeçalho por este comando:
$ git reset --hard e3f1e37
HEAD is now at e3f1e37 development version code incremented for new build.
Então tentei adicionar commit à origem / cabeçalho que não obtive êxito.
$ git commit -m "Reverting to the state of the project at e3f1e37"
# HEAD detached from origin/master
nothing to commit, working directory clean
Finalmente, faço o checkout para meu mestre local.
$ git checkout master
Switched to branch 'master'
Your branch is behind 'origin/master' by 7 commits, and can be fast-forwarded.
(use "git pull" to update your local branch)
Desde que, redefini a cabeça de origem / mestre, espero que local e origem devam estar na mesma direção, mas como você vê, o git está dizendo que meu local / mestre está atrás de origem / mestre por 7 commits.
Como posso corrigir esse problema? O que estou procurando é o chefe do local / mestre e a origem / mestre apontam para o mesmo commit. A imagem a seguir mostra o que eu fiz. Obrigado.