[eigen] Re: Eigen 2.0 branched, trunk open for 2.1 hacking |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: [eigen] Re: Eigen 2.0 branched, trunk open for 2.1 hacking
- From: Benoit Jacob <jacob.benoit.1@xxxxxxxxx>
- Date: Tue, 27 Jan 2009 22:00:04 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=C8XG3Fq7rBcRwO7LJ39ZqU/11cTMuhnB51vsn9nfJrU=; b=wxIr8Jm+OSIvUxKBH7oQLv2CSWfjsine1dXRSWPkgpkYoDp93MRAulSueDrNKgwsuQ 5gWlHKjFJFnhVNdYvxnmJgyXKiTnI+ui2zmSA/IHnLXihrkKQTYFsctBUqH5WTeCzAPe pMGIMlKMILxzKK6uV6rSUupUFtgEvK0ef0VLw=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=NLM7RGENyHw0pKcUM5KlkwDKVfZgtEU5a+eG7j9iUCuHTTlR1WyAmTf5XvvNdNZUxV d/MSTIjGVdpL/evkJGo/ODVeahQalQTiLBjWkwo5NJdYQS5Cy8ZqkNlA7r+xOa86KxVV OqjkpLdb9QU+gauA+HQsQJpipOve3dY5V8TyQ=
So I figured out svn merge.
Suppose that your checkout of the trunk is ~/path/to/trunk and your
checkout of the branch is ~/path/to/branch.
Suppose that you have made a fix in trunk and you want to back it to the branch.
First, commit your fix to the trunk. Note down the revision number, call it N.
Then, do:
cd ~/path/to/branch
svn merge -rM:N ~/path/to/trunk
svn ci
where M is just N-1.
Cheers,
Benoit
2009/1/27 Benoit Jacob <jacob.benoit.1@xxxxxxxxx>:
> Hi List,
>
> 2.0 was just branched at /branches/eigen/2.0. The 2.0.0 release should
> occur in a few days.
>
> This means that from now on, changes made in trunk
> (/trunk/kdesupport/eigen2) will only appear in Eigen 2.1, not in Eigen
> 2.0. So trunk is wide open for 2.1 development. Now is again a good
> time to do big changes in trunk.
>
> Whenever we fix a bug in trunk, if we want the bugfix to appear in a
> 2.0.x release, we need to manually backport that fix to the 2.0
> branch. It seems that the svn command of interest here is "svn merge"
> but I have yet to learn how it works so don't ask me. The KDE Techbase
> normally has information on this subject but it is currently down.
>
> Cheers,
> Benoit
>