summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2012-12-13 11:06:29 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-12-14 13:04:56 +0000
commit5161a84f5dcfe748382a5073349bf10ed21641f9 (patch)
treeb8b6fa98c95dc127900fb76af2f60966d2295e57 /lib
parent0668a0ea968baf930f05806a5452c8dbe4ec35ce (diff)
downloadbitbake-5161a84f5dcfe748382a5073349bf10ed21641f9.tar.gz
git.py: A bit of tidying up regarding grammar and supported protocols.
Doc cleanup, no functional change. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/fetch2/git.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/bb/fetch2/git.py b/lib/bb/fetch2/git.py
index 0fd0b2f3b..ba9f5fb9a 100644
--- a/lib/bb/fetch2/git.py
+++ b/lib/bb/fetch2/git.py
@@ -11,8 +11,8 @@ Supported SRC_URI options are:
- branch
The git branch to retrieve from. The default is "master"
- this option also support multiple branches fetching, branches
- are seperated by comma. in multiple branches case, the name option
+ This option also supports multiple branch fetching, with branches
+ separated by commas. In multiple branches case, the name option
must have the same number of names to match the branches, which is
used to specify the SRC_REV for the branch
e.g:
@@ -25,13 +25,13 @@ Supported SRC_URI options are:
- protocol
The method to use to access the repository. Common options are "git",
- "http", "file" and "rsync". The default is "git"
+ "http", "https", "file", "ssh" and "rsync". The default is "git".
- rebaseable
rebaseable indicates that the upstream git repo may rebase in the future,
and current revision may disappear from upstream repo. This option will
- reminder fetcher to preserve local cache carefully for future use.
- The default value is "0", set rebaseable=1 for rebaseable git repo
+ remind fetcher to preserve local cache carefully for future use.
+ The default value is "0", set rebaseable=1 for rebaseable git repo.
- nocheckout
Don't checkout source code when unpacking. set this option for the recipe