Mercurial equivalent of "git pull --rebase" -


this question has answer here:

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 = 

(more info)


Comments

Popular posts from this blog

java - How to Configure JAXRS and Spring With Annotations -

visual studio - TFS will not accept changes I've made to a Java project -

php - Create image in codeigniter on the fly -