diff options
author | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2018-06-22 11:45:20 +0200 |
---|---|---|
committer | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2018-06-22 11:45:20 +0200 |
commit | 5f3571d3c7b3303d9b503a79706c84f773994e66 (patch) | |
tree | 40e711fbcd9915514ed16855187e2ef3d5c34533 /platform | |
parent | c9702a645726424ebfe0fa88a7d773db9a3e9626 (diff) |
Update getting started documentation:
* Fix markdown lint warring.
* Update AGL current version.
* Update Renesas documentation.
Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
Diffstat (limited to 'platform')
-rw-r--r-- | platform/working-on-the-master-branch.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/platform/working-on-the-master-branch.md b/platform/working-on-the-master-branch.md index 16dae32..31f0c04 100644 --- a/platform/working-on-the-master-branch.md +++ b/platform/working-on-the-master-branch.md @@ -3,14 +3,14 @@ ## Intro This is a quick howto for working on the 'master' branch. Working on the branch -is easy as we maintain all changes through gerrit.automotivelinux.org. +is easy as we maintain all changes through gerrit.automotivelinux.org. If you are unfamiliar with gerrit, please read these fine how-to pages were put together from the Mediawiki community here: <https://www.mediawiki.org/wiki/Gerrit/Tutorial> . This covers the basics very well. Of course we'll work with gerrit.automotivelinux.org instead so apply likewise. ## Installation of tools Install `git` with your distributions package manager. -A very useful tool is "git-review" (cmdline is then `git review`). +A very useful tool is "git-review" (cmdline is then `git review`). Install it from your distro or with `sudo pip install git-review`. ## Prerequisites @@ -58,7 +58,7 @@ Follow these steps to submit a change to the 'master' branch: ```bash git review ``` - + 1. (optional, but highly recommended!) Reset to gerrit/master ```bash @@ -78,7 +78,7 @@ Example for meta-agl: ```bash repo init -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo - repo sync + repo sync cd meta-agl/ git review -d 8233 ``` @@ -104,7 +104,7 @@ This will pull-down change 8233. You can now edit a file: ```bash vi meta-xyz/recipes-foo/bar/baz.bb -git commit -s --amend +git commit -s --amend ``` Don't forget a test build |