Git kullanarak böyle bir şey yaptım
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)
Bana, müstakil bir kafa durumundayken hala taahhütte bulunabileceğimi söylediğinden, bunu yaptım. Ama şimdi müstakil baş şubemi ve yerel ana şubemi birleştirmek ve daha sonra yaptığım değişikliklerin kökeni / efendisine geçmek istiyorum.
Benim sorum şu ki, ana dalı gerçek durumumla (ayrı kafa) nasıl birleştirebilirim?