Yerel yöneticimi şu komutla bir taahhüdüne sıfırladım:
git reset --hard e3f1e37
$ git status
Komuta girdiğimde terminal diyor ki:
# 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
Orijin / üstbilgiyi de sıfırlamak istediğim için, orijin / master'a çıkış yapıyorum:
$ 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.
ve başlığı şu komutla sıfırlayın:
$ git reset --hard e3f1e37
HEAD is now at e3f1e37 development version code incremented for new build.
Sonra başarama / başlığa başarılı olamadığımı taahhüt etmeye çalıştım.
$ git commit -m "Reverting to the state of the project at e3f1e37"
# HEAD detached from origin/master
nothing to commit, working directory clean
Sonunda, yerel üstadı kontrol ediyorum.
$ 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)
Yerel ve menşein aynı yönde olmasını beklediğimden orijin / master'ın kafasını sıfırladığım için, gördüğünüz gibi git, local / master'ımın 7 komisyon tarafından orijin / master'ın arkasında olduğunu söylüyor.
Bu sorunu nasıl düzeltebilirim? Aradığım şeyler, yerel / master ve orijin / master noktası aynı taahhütte. Aşağıdaki görüntü ne yaptığımı gösterir. Teşekkürler.