Usando git ho fatto qualcosa del genere
git clone
git checkout {a rev number tree rev before} (here I started to be in a detached head state)
//hacking
git commit
//hacking
git commit
(some commit where made on origin/master)
git pull (which does complete because there was some error due to the fact that I'm no more on master)
Perché mi ha detto che posso ancora impegnarmi in uno stato di testa distaccato, l'ho fatto. Ma ora voglio unire il mio ramo di testa distaccato e il mio ramo principale locale, quindi spingere il mio gruppo di modifiche a origine / maestro.
Quindi la mia domanda è come potrei unire il ramo master con il mio stato attuale (testa staccata)