Mercurial equivalent of "git pull --rebase" -
this question has answer here:
- hg: how rebase git's rebase 5 answers
is there mercurial equivalent of git pull --rebase
?
try hg pull --rebase
. mecurial's pull git's fetch, , git's fetch mercurial's pull, when you're rebasing you're updating working dir either way, hg pull --rebase
guy.
note: because rebase
alters history, it's disabled default. can turn on (no need download, have it) adding following in configuration file:
[extensions] rebase =
Comments
Post a Comment