Changes between Version 3 and Version 4 of gbgp_repository
- Timestamp:
- 2015-10-21T15:05:55Z (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
gbgp_repository
v3 v4 11 11 }}} 12 12 13 For a complete list of Subversion commands see the [http://svnbook.red-bean.com/en/1. 0/index.html SVN reference manual]13 For a complete list of Subversion commands see the [http://svnbook.red-bean.com/en/1.7/index.html SVN reference manual (version 1.7)] 14 14 15 15 '''Checking out trunk''' 16 16 17 To [http://svnbook.red-bean.com/en/1. 0/re04.html checkout] the latest development (trunk) versions:17 To [http://svnbook.red-bean.com/en/1.7/svn.tour.initial.html checkout] the latest development (trunk) versions: 18 18 {{{ 19 19 svn checkout https://svn.romsaf.org/gbgp/gbgp_src/trunk ./trunk … … 35 35 === Tags === 36 36 37 A [http://svnbook.red-bean.com/en/1. 0/ch04s06.html tag] is just [http://svnbook.red-bean.com/en/1.0/re07.html copy] or snapshot of a a particular revision of the repository. In the case of GBGP, a copy taken from the head of trunk at the time that the distribution files for a release were built. You could just as well checkout the revision number instead, but a tag is easier to remember.37 A [http://svnbook.red-bean.com/en/1.7/svn.branchmerge.tags.html tag] is just a [http://svnbook.red-bean.com/en/1.7/svn.ref.svn.c.copy.html copy] or snapshot of a a particular revision of the repository. In the case of GBGP, a copy taken from the head of trunk at the time that the distribution files for a release were built. You could just as well checkout the revision number instead, but a tag is easier to remember. 38 38 39 39 == Branches == 40 40 41 Developments to GBGP should be made from, and committed to, a [http://svnbook.red-bean.com/en/1. 0/ch04.html#svn-ch-4-sect-1branch] rather than directly to the latest trunk version. This allows changes to be tested before merging the required changes back into the trunk. The trunk therefore represents a stable 'next potential release' state for GBGP. Branches can be temporary and might be for working on resolving a specific Trac Ticket.41 Developments to GBGP should be made from, and committed to, a [http://svnbook.red-bean.com/en/1.7/svn.branchmerge.using.html branch] rather than directly to the latest trunk version. This allows changes to be tested before merging the required changes back into the trunk. The trunk therefore represents a stable 'next potential release' state for GBGP. Branches can be temporary and might be for working on resolving a specific Trac Ticket. 42 42 43 43 Instructions for developers working with branches in GBGP are available [https://trac.romsaf.org/gbgp/wiki/gbgp_branches here].