Je réinitialise mon maître local à un commit par cette commande:
git reset --hard e3f1e37
lorsque j'entre dans la $ git status
commande, le terminal dit:
# 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
Étant donné que je souhaite également réinitialiser l'origine / l'en-tête, je passe à l'origine / maître:
$ 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.
et réinitialiser l'en-tête par cette commande:
$ git reset --hard e3f1e37
HEAD is now at e3f1e37 development version code incremented for new build.
Ensuite, j'ai essayé d'ajouter un commit à l'origine / en-tête qui n'a pas réussi.
$ git commit -m "Reverting to the state of the project at e3f1e37"
# HEAD detached from origin/master
nothing to commit, working directory clean
Enfin, je commande à mon maître 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)
Depuis, j'ai réinitialisé la tête d'origine / maître, je m'attends à ce que local et origine soient dans la même direction, mais comme vous le voyez, git dit que mon local / maître est derrière origine / maître de 7 commits.
Comment puis-je résoudre ce problème? Ce que je recherche, c'est que le responsable local / master et le point origin / master pointent vers le même commit. L'image suivante montre ce que j'ai fait. Merci.