diff options
author | Uladzimir Pylinski <barthess@yandex.ru> | 2015-08-24 16:43:27 +0300 |
---|---|---|
committer | Uladzimir Pylinski <barthess@yandex.ru> | 2015-08-24 16:43:27 +0300 |
commit | 0f58e799a2f03f377a4c49a38b4237e1993d8dd3 (patch) | |
tree | c0a5dc9cf1892cf7b3d4bb749c49c79ed122aa52 /README-git.md | |
parent | 5e8611186e63f0b9304e807aa190b98392087d59 (diff) | |
download | ChibiOS-Contrib-0f58e799a2f03f377a4c49a38b4237e1993d8dd3.tar.gz ChibiOS-Contrib-0f58e799a2f03f377a4c49a38b4237e1993d8dd3.tar.bz2 ChibiOS-Contrib-0f58e799a2f03f377a4c49a38b4237e1993d8dd3.zip |
Delete README-git.md
This file now obsolete.
Diffstat (limited to 'README-git.md')
-rw-r--r-- | README-git.md | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/README-git.md b/README-git.md deleted file mode 100644 index 3cfc241..0000000 --- a/README-git.md +++ /dev/null @@ -1,63 +0,0 @@ -Quick start: -============ - -Assume you already have a github account. Lets your account name is -"username". - -First you need to fork 2 repos: -- ChibiOS -- ChibiOS-contrib - -Make local clone of your fork -```bash -# git clone git@github.com:username/ChibiOS.git -``` - -Make local branch for your feature -```bash -# cd ChibiOS -# git branch feature -# git checkout feature -``` - -There is no code from ChibiOS-contrib in your repo. We have to connect -ChibiOS-contrib as a git submodule -```bash -# git submodule add git@github.com:username/ChibiOS-Contrib.git community -``` - -Make branch again, but now in freshly connected submodule -```bash -# cd community -# git branch feature -# git checkout feature -``` - -Hack, hack, hack... Commit our changes and push to server. Note: you have -to do this for both repositories. First ChibiOS-Contrib -```bash -# cd community -# git add . -# git commit -m "Feature implemented" -# git push origin feature:feature -``` - -Now for parent repo -```bash -# cd .. -# git add . -# git commit -m "Feature implemented" -# git push origin feature:feature -``` - -Now all your changes published on github. Just use web interface to send -2 pull requests: for ChibiOS-contrib and for ChibiOS. - -Links: -====== - -https://help.github.com/ - -http://git-scm.com/ - -http://chibios.org/dokuwiki/doku.php?id=chibios:guides:style_guide |