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

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