From 4234beb03406b82ef7797035a53ea5cbd380f337 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Mon, 23 Jan 2012 12:43:57 -0600 Subject: documentation/dev-manual/dev-manual-kernel-appendix.xml: branch info added The example now uses an edison branch of the poky-extras repo. Now that that is necessary, there needs to be explanation in the example on setting that branch up after creating the local repository. (From yocto-docs rev: 70599a07a6efb0ae2da04baa43b5bb99c9ec4e5d) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- .../dev-manual/dev-manual-kernel-appendix.xml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'documentation') diff --git a/documentation/dev-manual/dev-manual-kernel-appendix.xml b/documentation/dev-manual/dev-manual-kernel-appendix.xml index 12cb20eb46..6470c9a034 100644 --- a/documentation/dev-manual/dev-manual-kernel-appendix.xml +++ b/documentation/dev-manual/dev-manual-kernel-appendix.xml @@ -172,6 +172,27 @@ poky-extras Git Repository" for information on how to get the poky-extras repository. + + + Once you have the repository set up, + you have many development branches from which you can work. + From inside the repository you can see the branch names and the tag names used + in the Git repository using either of the following two commands: + + $ cd poky + $ git branch -a + $ git tag -l + + This example uses the Yocto Project 1.1.1 Release code named "edison", + which maps to the edison branch in the repository. + The following commands create and checkout the local edison + branch: + + $ git checkout -b edison origin/edison + Branch edison set up to track remote branch edison from origin. + Switched to a new branch 'edison' + +
-- cgit v1.2.3-54-g00ecf