* [PATCH 1/2] documentation/kernel-manual/kernel-how-to.xml: fixed typo bug 588
2010-12-13 23:57 [PATCH 0/2] Doc: kernel manual minor edits Scott Rifenbark
@ 2010-12-13 21:41 ` Scott Rifenbark
2010-12-13 21:44 ` [PATCH 2/2] documentation/kernel-manual/kernel-how-to.xml: added newline character Scott Rifenbark
2010-12-14 21:46 ` [PATCH 0/2] Doc: kernel manual minor edits Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Scott Rifenbark @ 2010-12-13 21:41 UTC (permalink / raw)
To: poky
removed the ";" character that was part of the git log --pretty=oneline
command example. This fixes bug [BUGID# 588].
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
---
documentation/kernel-manual/kernel-how-to.xml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/documentation/kernel-manual/kernel-how-to.xml b/documentation/kernel-manual/kernel-how-to.xml
index 85bd8f8..67f6a90 100644
--- a/documentation/kernel-manual/kernel-how-to.xml
+++ b/documentation/kernel-manual/kernel-how-to.xml
@@ -429,7 +429,7 @@ repository.
> eg: git whatchanged standard..common_pc-standard
# summary of the changes
- > git log --pretty=oneline --;abbrev-commit <kernel type>..<bsp>-<kernel type>
+ > git log --pretty=oneline --abbrev-commit <kernel type>..<bsp>-<kernel type>
# source code changes (one combined diff)
> git diff <kernel type>..<bsp>-<kernel type>
--
1.7.0.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] documentation/kernel-manual/kernel-how-to.xml: added newline character
2010-12-13 23:57 [PATCH 0/2] Doc: kernel manual minor edits Scott Rifenbark
2010-12-13 21:41 ` [PATCH 1/2] documentation/kernel-manual/kernel-how-to.xml: fixed typo bug 588 Scott Rifenbark
@ 2010-12-13 21:44 ` Scott Rifenbark
2010-12-14 21:46 ` [PATCH 0/2] Doc: kernel manual minor edits Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Scott Rifenbark @ 2010-12-13 21:44 UTC (permalink / raw)
To: poky
There was a git checkout and git push command that did not have a newline
character between the two line in a literallayout block.
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
---
documentation/kernel-manual/kernel-how-to.xml | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/documentation/kernel-manual/kernel-how-to.xml b/documentation/kernel-manual/kernel-how-to.xml
index 67f6a90..6b326b5 100644
--- a/documentation/kernel-manual/kernel-how-to.xml
+++ b/documentation/kernel-manual/kernel-how-to.xml
@@ -1078,7 +1078,8 @@ That's it. Configure and build.
<para>
Now create a branch in the local clone and push it to the bare clone:
<literallayout class='monospaced'>
- $ git checkout -b crownbay-standard origin/standard $ git push origin crownbay-standard:crownbay-standard
+ $ git checkout -b crownbay-standard origin/standard
+ $ git push origin crownbay-standard:crownbay-standard
</literallayout>
</para>
--
1.7.0.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 0/2] Doc: kernel manual minor edits
@ 2010-12-13 23:57 Scott Rifenbark
2010-12-13 21:41 ` [PATCH 1/2] documentation/kernel-manual/kernel-how-to.xml: fixed typo bug 588 Scott Rifenbark
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Scott Rifenbark @ 2010-12-13 23:57 UTC (permalink / raw)
To: poky
Two minor edit addressed:
Fixed an errant semi-colon in a git log example command
Added a new line character between two commands that were on the
same page.
Pull URL: git://git.pokylinux.org/poky-contrib.git
Branch: srifenbark/docs
Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=srifenbark/docs
Thanks,
Scott Rifenbark <scott.m.rifenbark@intel.com>
---
Scott Rifenbark (2):
documentation/kernel-manual/kernel-how-to.xml: fixed typo bug 588
documentation/kernel-manual/kernel-how-to.xml: added newline
character
documentation/kernel-manual/kernel-how-to.xml | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] Doc: kernel manual minor edits
2010-12-13 23:57 [PATCH 0/2] Doc: kernel manual minor edits Scott Rifenbark
2010-12-13 21:41 ` [PATCH 1/2] documentation/kernel-manual/kernel-how-to.xml: fixed typo bug 588 Scott Rifenbark
2010-12-13 21:44 ` [PATCH 2/2] documentation/kernel-manual/kernel-how-to.xml: added newline character Scott Rifenbark
@ 2010-12-14 21:46 ` Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2010-12-14 21:46 UTC (permalink / raw)
To: Scott Rifenbark; +Cc: poky
On 12/13/2010 03:57 PM, Scott Rifenbark wrote:
> Two minor edit addressed:
> Fixed an errant semi-colon in a git log example command
> Added a new line character between two commands that were on the
> same page.
>
> Pull URL: git://git.pokylinux.org/poky-contrib.git
> Branch: srifenbark/docs
> Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=srifenbark/docs
>
> Thanks,
> Scott Rifenbark<scott.m.rifenbark@intel.com>
> ---
>
>
> Scott Rifenbark (2):
> documentation/kernel-manual/kernel-how-to.xml: fixed typo bug 588
> documentation/kernel-manual/kernel-how-to.xml: added newline
> character
>
> documentation/kernel-manual/kernel-how-to.xml | 5 +++--
> 1 files changed, 3 insertions(+), 2 deletions(-)
>
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky
>
Pulled into Master
Sau!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-12-14 21:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-13 23:57 [PATCH 0/2] Doc: kernel manual minor edits Scott Rifenbark
2010-12-13 21:41 ` [PATCH 1/2] documentation/kernel-manual/kernel-how-to.xml: fixed typo bug 588 Scott Rifenbark
2010-12-13 21:44 ` [PATCH 2/2] documentation/kernel-manual/kernel-how-to.xml: added newline character Scott Rifenbark
2010-12-14 21:46 ` [PATCH 0/2] Doc: kernel manual minor edits Saul Wold
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.