My company uses Mercurial 3.6.3 (I know it is very old, but I have no say in this). After cloning the remote repo, I made a couple of local commits using hg commit
. After some time, I wanted to fetch the latest commits from the remote repo and rebase my commits on top of them. I ran hg pull -u
, and for some reason the remote commits were applied on top of my local commits.
What do I do so that my two local commits are placed at the top instead of squished in between commits from the remote repo?