Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cvs_branches.html 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <HTML>
  2. <TITLE>CVS Branches</TITLE>
  3. <BODY text="#000000" bgcolor="#55bbff" link="#111188">
  4. <H1>CVS Branch Information</H1>
  5. <p>
  6. At any given time, there may be several active branches in Mesa's
  7. CVS repository.
  8. Generally, the CVS trunk contains the latest development (unstable)
  9. code while a CVS branch has the latest stable code.
  10. </p>
  11. <p>
  12. Currently (Oct 2004), the trunk is the Mesa 6.3 development code
  13. while the mesa_6_2_branch branch has the stable Mesa 6.2.x code.
  14. </p>
  15. <p>
  16. Mesa releases use an even/odd numbering scheme to represent stable/development
  17. releases.
  18. For example, Mesa 6.2 (0 is considered even) is a stable release while
  19. Mesa 6.3 is a development release.
  20. </p>
  21. <p>
  22. To checkout a specific CVS branch pass <code>-r</code> and
  23. the branch tag after your CVS command.
  24. For example <code>cvs checkout -r mesa_6_2_branch Mesa</code> will
  25. checkout the 6.2 branch and <code>cvs update -r
  26. mesa_6_2_branch</code> will convert your current CVS tree to the 6.2
  27. branch.
  28. Consult <a href="http://www.durak.org/cvswebsites/doc/cvs_5.php3#SEC54"
  29. target="_parent">http://www.durak.org/cvswebsites/doc/cvs_5.php3#SEC54</a>
  30. for more on branching in CVS.
  31. </p>
  32. <p>
  33. To see a list of all the CVS branches run <code>cvs log README</code> (or any
  34. other file) and look for the section labeled <code>symbolic names</code>.
  35. You'll see something like this:
  36. </p>
  37. <pre> symbolic names:
  38. mesa_4_0: 1.3
  39. mesa_4_0_branch: 1.3.0.6
  40. mesa_3_5: 1.3
  41. mesa_3_4_2: 1.3
  42. mesa_3_4_1: 1.3
  43. mesa_3_4: 1.3
  44. mesa_3_4_branch: 1.3.0.4
  45. mesa_3_3: 1.3
  46. mesa_3_2_1: 1.1.1.1
  47. mesa_3_3_texture_env_combine2: 1.3.0.2
  48. mesa_3_2: 1.1.1.1
  49. mesa_3_2_beta_1: 1.1.1.1
  50. mesa_3_1: 1.1.1.1
  51. mesa_3_2_dev: 1.1.1.1.0.2
  52. mesa_3_1_beta_3: 1.1.1.1
  53. start: 1.1.1.1
  54. mesa: 1.1.1
  55. </pre>
  56. <p>
  57. Most will be obsolete branches. Generally, the newer branches are at
  58. the top. Ask on the mesa3d-dev mailing list to learn which branches
  59. are active.
  60. </p>
  61. </body>
  62. </html>