Ho reimpostato il mio master locale su un commit con questo comando:
git reset --hard e3f1e37
quando inserisco il $ git status
comando, il terminale dice:
# 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
Dato che voglio ripristinare anche origin / header, checkout su 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 resetta l'intestazione con questo comando:
$ git reset --hard e3f1e37
HEAD is now at e3f1e37 development version code incremented for new build.
Quindi ho provato ad aggiungere commit a origin / header che non avevo avuto successo.
$ git commit -m "Reverting to the state of the project at e3f1e37"
# HEAD detached from origin/master
nothing to commit, working directory clean
Alla fine, controllo al mio padrone di casa.
$ 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)
Da allora, ho resettato il capo di origine / master, mi aspetto che local e origin dovrebbero essere nella stessa direzione, ma come vedi, git sta dicendo che il mio local / master è dietro origin / master di 7 commit.
Come posso risolvere questo problema? Quello che sto cercando è Head of local / master e origin / master puntano allo stesso commit. L'immagine seguente mostra cosa ho fatto. Grazie.