summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/dev-manual-newbie.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2011-07-22 09:28:10 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-04 15:06:42 +0100
commit5c8f83592bff30bdc0ee3725a9ba1f9358189a0c (patch)
tree0a07d4c37737e953537d6f2ca18dd75cf214cce6 /documentation/dev-manual/dev-manual-newbie.xml
parentf91f0c7fbb6150d0544b6f09205fffc8aa92dac6 (diff)
downloadpoky-5c8f83592bff30bdc0ee3725a9ba1f9358189a0c.tar.gz
documentation/dev-manual/dev-manual-newbie.xml: edits to Git section.
(From yocto-docs rev: e5844ac3b29aa1206b4c08d9d4b4bb461f9db23b) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/dev-manual-newbie.xml')
-rw-r--r--documentation/dev-manual/dev-manual-newbie.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/documentation/dev-manual/dev-manual-newbie.xml b/documentation/dev-manual/dev-manual-newbie.xml
index c39024cd3f..57079fa0c5 100644
--- a/documentation/dev-manual/dev-manual-newbie.xml
+++ b/documentation/dev-manual/dev-manual-newbie.xml
@@ -246,6 +246,9 @@
246 This way if you don’t like what you have done you can easily get rid of the work.</para></listitem> 246 This way if you don’t like what you have done you can easily get rid of the work.</para></listitem>
247 <listitem><para><emphasis><filename>git branch</filename></emphasis> – Reports existing branches and 247 <listitem><para><emphasis><filename>git branch</filename></emphasis> – Reports existing branches and
248 tells you which branch in which you are currently working.</para></listitem> 248 tells you which branch in which you are currently working.</para></listitem>
249 <listitem><para><emphasis><filename>git branch -D &lt;branch-name&gt;</filename></emphasis> –
250 Deletes an existing branch. You need to be in a branch other than the one you are deleting
251 in order to delete &lt;branch-name&gt;.</para></listitem>
249 <listitem><para><emphasis><filename>git pull</filename></emphasis> – Retrieves information from an upstream Git 252 <listitem><para><emphasis><filename>git pull</filename></emphasis> – Retrieves information from an upstream Git
250 repository and places it in your local Git repository. 253 repository and places it in your local Git repository.
251 You use this command to make sure you are synchronized with the upstream repository 254 You use this command to make sure you are synchronized with the upstream repository
@@ -258,7 +261,7 @@
258 local branch of your repository with another branch. 261 local branch of your repository with another branch.
259 When you create a local Git repository the default branch is named “master”. 262 When you create a local Git repository the default branch is named “master”.
260 A typical workflow is to create a temporary branch for isolated work, make and commit your 263 A typical workflow is to create a temporary branch for isolated work, make and commit your
261 changes, switch to the master branch, merge the changes in the temporary branch with the 264 changes, switch to the master branch, merge the changes from the temporary branch into the
262 master branch, and then delete the temporary branch</para></listitem> 265 master branch, and then delete the temporary branch</para></listitem>
263 <listitem><para><emphasis><filename>git cherry-pick</filename></emphasis> – Choose and apply specific 266 <listitem><para><emphasis><filename>git cherry-pick</filename></emphasis> – Choose and apply specific
264 commits from one branch into another branch. 267 commits from one branch into another branch.