开发者

Mercurial - compare local and remote repositories?

开发者 https://www.devze.com 2023-03-24 01:57 出处:网络
In Git, there is the command git remote show <remote> When properly configured, this will show you the status of the remote compared to your local repository, including whether there are pend

In Git, there is the command

git remote show <remote>

When properly configured, this will show you the status of the remote compared to your local repository, including whether there are pending changes in e开发者_如何转开发ither. I can't find a similar command in Mercurial. Am I missing something or does it just not exist?


Perhaps hg summary --remote?


To compare local and remote repositories follow these steps:

  1. go to local repo folder (use cd path_to_local_repo)
  2. run "hg outgoing -p path_to_remote_repo" (without quotes)

See GenerateDiffBetweenRepositories

0

精彩评论

暂无评论...
验证码 换一张
取 消