On Thursday 03 June 2010, Yuv wrote: > There must be a way to avoid the switching forth and back. The > following may work (I have not tested in depth, so far it seems to be > ok): > > mkdir -p ~/src/hugin > cd ~/src/hugin > hg clone http://hugin.hg.sourceforge.net:8000/hgroot/hugin/hugin trunk > cd trunk > hg update > cd .. > mkdir cpm > cd cpm
don't do the following: > ln -s ../trunk/.hg > hg update -C gsoc2010_patent_free_cpm Instead: hg clone ../trunk hg update -C gsoc2010_patent_free_cpm It will use hard links (so no abuse of disk space), and it is guaranteed to work (while symbolic linking of .hg is guaranteed to fail, after all the name of the current branch is stored inside .hg). But to move patches between checkouts you will have to do push/pull. -- Cyrille Berger -- You received this message because you are subscribed to the Google Groups "hugin and other free panoramic software" group. A list of frequently asked questions is available at: http://wiki.panotools.org/Hugin_FAQ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/hugin-ptx
