On Fri, Aug 23, 2019 at 8:40 AM Christian Brabandt <[email protected]> wrote: > > > On Do, 22 Aug 2019, Bram Moolenaar wrote: > > > What are the "hg clone" commands to use? For bitbucket it's: > > > > hg clone https://bitbucket.org/vim-mirror/vim > > hg clone http://hg.256bit.org/vim or > hg clone https://hg.osdn.net/view/vim/vim
IOW, once you have a clone you can set them all in the .hg/hgrc config file in that clone, for instance as follows: ... [paths] default = https://bitbucket.org/vim-mirror/vim 256bit = http://hg.256bit.org/vim osdn = https://hg.osdn.net/view/vim/vim ... Then "hg pull 256bit" or "hg fetch 256bit" will pull from the 256bit Vim repo while "hg pull" or "hg fetch" would still pull from the bitbucket repo. IOW, "default" is the one you pull from when you don't specify a remote source, so once you feel confident that, let's say, the 256bit repo is stable enough for you, replace "default" by "bitbucket" and "256bit" by "default" in the above example. Best regards, Tony. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/CAJkCKXthcdK%3D79B%2B4CNj69ZPqfhjoXE%2Be4AP-vB-e_NM3%2B2fwg%40mail.gmail.com.
