diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2012-12-13 11:06:29 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-14 13:08:48 +0000 |
commit | ad29d14099bc59fabf0bb2e45d24cbcfa05761ba (patch) | |
tree | a7aadc06fdef099aa3527d1d7ad6c84940846f40 /bitbake/lib | |
parent | 6ec6bf4e4fe8728f424ec2bc54294d5befce5456 (diff) | |
download | poky-ad29d14099bc59fabf0bb2e45d24cbcfa05761ba.tar.gz |
bitbake: git.py: A bit of tidying up regarding grammar and supported protocols.
Doc cleanup, no functional change.
(Bitbake rev: 5161a84f5dcfe748382a5073349bf10ed21641f9)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index 0fd0b2f3b9..ba9f5fb9ab 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py | |||
@@ -11,8 +11,8 @@ Supported SRC_URI options are: | |||
11 | - branch | 11 | - branch |
12 | The git branch to retrieve from. The default is "master" | 12 | The git branch to retrieve from. The default is "master" |
13 | 13 | ||
14 | this option also support multiple branches fetching, branches | 14 | This option also supports multiple branch fetching, with branches |
15 | are seperated by comma. in multiple branches case, the name option | 15 | separated by commas. In multiple branches case, the name option |
16 | must have the same number of names to match the branches, which is | 16 | must have the same number of names to match the branches, which is |
17 | used to specify the SRC_REV for the branch | 17 | used to specify the SRC_REV for the branch |
18 | e.g: | 18 | e.g: |
@@ -25,13 +25,13 @@ Supported SRC_URI options are: | |||
25 | 25 | ||
26 | - protocol | 26 | - protocol |
27 | The method to use to access the repository. Common options are "git", | 27 | The method to use to access the repository. Common options are "git", |
28 | "http", "file" and "rsync". The default is "git" | 28 | "http", "https", "file", "ssh" and "rsync". The default is "git". |
29 | 29 | ||
30 | - rebaseable | 30 | - rebaseable |
31 | rebaseable indicates that the upstream git repo may rebase in the future, | 31 | rebaseable indicates that the upstream git repo may rebase in the future, |
32 | and current revision may disappear from upstream repo. This option will | 32 | and current revision may disappear from upstream repo. This option will |
33 | reminder fetcher to preserve local cache carefully for future use. | 33 | remind fetcher to preserve local cache carefully for future use. |
34 | The default value is "0", set rebaseable=1 for rebaseable git repo | 34 | The default value is "0", set rebaseable=1 for rebaseable git repo. |
35 | 35 | ||
36 | - nocheckout | 36 | - nocheckout |
37 | Don't checkout source code when unpacking. set this option for the recipe | 37 | Don't checkout source code when unpacking. set this option for the recipe |