10
是否存在git pull --rebase
的水銀當量?「git pull --rebase」的水銀當量
是否存在git pull --rebase
的水銀當量?「git pull --rebase」的水銀當量
嘗試hg pull --rebase
。 Mecurial的拉動是git的抓取,而git的抓取是mercurial的拉動,但是當你重新綁定時,你會更新工作目錄,所以hg pull --rebase
是你的人。
注意:因爲rebase
會更改歷史記錄,所以默認情況下它是禁用的。您可以通過添加打開它(無需下載,你已經擁有它)在配置文件中的以下內容:
[extensions]
rebase =
Link is過時的更多信息,新的鏈接:https://www.mercurial-scm.org/wiki/RebaseExtension –
追隨者尋找「'混帳拉的善變相當於''(正常的合併方式 - 非轉發)它是'hg pull && hg update'參見http://stackoverflow.com/a/15244773/32453 – rogerdpack
或者稍微短一些:'hg pull --update' – yorch