Changes between Version 6 and Version 7 of UNPLANNED_REPO_MAINTENACE_R1b


Ignore:
Timestamp:
11/17/08 13:54:40 (16 years ago)
Author:
todor
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UNPLANNED_REPO_MAINTENACE_R1b

    v6 v7  
    3131[wiki:REPO_MAINTENANCE] will look this way: 
    3232Creating tag: 
     33Another common version control concept is a tag. A tag is just a “snapshot” of a project in time. In Subversion, this idea already seems to be everywhere. Each repository revision is exactly that—a snapshot of the filesystem after each commit. 
     34 
     35However, people often want to give more human-friendly names to tags, like release-1.0. And they want to make snapshots of smaller subdirectories of the filesystem. After all, it's not so easy to remember that release-1.0 of a piece of software is a particular subdirectory of revision 4822. 
     36 * How to create a tag on Linux 
     37{{{ 
     38$ svn copy http://svn.example.com/repos/calc/trunk \ 
     39           http://svn.example.com/repos/calc/tags/release-1.0 \ 
     40      -m "Tagging the 1.0 release of the 'calc' project." 
     41}}} 
     42Committed revision 351. 
     43 
     44 
    3345 * How to create a tag on Windows with TortoiseSVN: 
    3446  * Update first.