Suppose I did git pull --rebase , as a result of which my commits (s) moved up, moving the pointer (“branch”).
After I do git push , will the remote branch be the same as the local branch?
Suppose I did git pull --rebase , as a result of which my commits (s) moved up, moving the pointer (“branch”).
After I do git push , will the remote branch be the same as the local branch?
As far as I understand:
pull --rebase completed successfully (or the conflicts that occurred were resolved by editing, adding files to the index ( add ... ) and then performing a rebase --continue )push command completed successfully (the remote branch did not “move” during this time due to the addition of new commits or even (partial) rewriting of the history)Source: https://ru.stackoverflow.com/questions/493506/
All Articles
--rebaseit just leaves the old commits as it is, and all subsequent sprays to the top of this branch. Or am I missing something? - D-side