From 42e57e467b8334230436f24dc4bdfff64b52d2b3 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Mon, 3 Nov 2008 12:50:35 +0000 Subject: [svn] Add @rev to svn checkout command Patch by borgcube@gmx.li Svn tries to be smart about revisions. So, when you check out an older revision of a file it goes to the latest revision (HEAD) and tries to go back to the old file. In this case it was impossible, since the whole thing was moved outside of svn's scope, so svn can't find the file in the HEAD revision. Svn treats this situation as an exception and provides the "peg-revision"-syntax for that. So where you would normally do svn co -r1337 http://url/to/somewhere/module module you would now have to do svn co -r1337 http://url/to/somewhere/module@1337 module, the @1337 telling svn to go start looking at revision 1337 instead of HEAD. --- ChangeLog | 1 + 1 file changed, 1 insertion(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 39032918c..349a3cb95 100644 --- a/ChangeLog +++ b/ChangeLog @@ -156,6 +156,7 @@ Changes in Bitbake 1.9.x: to extend the internal whitelist. - Perforce fetcher fix to use commandline options instead of being overriden by the environment - bb.utils.prunedir can cope with symlinks to directoriees without exceptions + - use @rev when doing a svn checkout Changes in Bitbake 1.8.0: - Release 1.7.x as a stable series -- cgit 1.2.3-korg