On Mar 23, 2010, at 12:49 PM, Twylite wrote:
>
> In SVN, CVS, VSS, etc. I would have 3 directories: libA, myLibA  
> (branch
> from libA), and libB (branch from libB).  If I use branches in  
> Fossil in
> the obvious manner, then I can only see one of these three code  
> trees at
> a time, which makes diffs awkward (amongst other things).  I seem to
> spend a lot of time keeping the branch structure in my head when
> navigating the code trees, rather than being able to see it on disk.


Suppose the name of the fossil repository is "libAB.fossil" and you  
have three branches tagged with "libA", "mylibA", and "libB".  Do this:

   mkdir libA mylibA libB
   cd libA; fossil open ../libAB.fossil libA; cd ..
   cd mylibA; fossil open ../libAB.fossil mylibA; cd ..
   cd libB; fossil open ../libAB.fossil libB; cd ..

Now you have three subdirectories, each containing the latest code for  
one of your branches.


D. Richard Hipp
[email protected]



_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to