From 0d0cf20a68c2b99a26c37581afe606e63109010e Mon Sep 17 00:00:00 2001 From: barthess Date: Sat, 17 Jan 2015 16:04:01 +0300 Subject: Readme files renamed from *.txt to *.md --- README-git.md | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ README-git.txt | 49 ------------------------------------------------- README.txt | 9 --------- 3 files changed, 49 insertions(+), 58 deletions(-) create mode 100644 README-git.md delete mode 100644 README-git.txt delete mode 100644 README.txt diff --git a/README-git.md b/README-git.md new file mode 100644 index 0000000..4e4a57f --- /dev/null +++ b/README-git.md @@ -0,0 +1,49 @@ +Quick start: +============ + +Assume you already have a github account. Lets your account name is +"username". + +First you need to fork 2 repos: +- ChibiOS-gitmain +- ChibiOS-contrib + +Make local clone of your fork +# git clone git@github.com:username/ChibiOS-gitmain.git + +Make local branch for your feature +# cd ChibiOS-gitmain +# 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 +# git submodule add git@github.com:username/ChibiOS-Contrib.git community + +Make branch again, but now in freshly connected submodule +# 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 +# cd community +# git add . +# git commit -m "Feature implemented" +# git push origin feature:feature + +Now for parent repo +# 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 +pull 2 requests: for ChibiOS-contrib and for ChibiOS-gitmain. + +Links: +====== + +https://help.github.com/ +http://git-scm.com/ +http://chibios.org/dokuwiki/doku.php?id=chibios:guides:style_guide diff --git a/README-git.txt b/README-git.txt deleted file mode 100644 index 4e4a57f..0000000 --- a/README-git.txt +++ /dev/null @@ -1,49 +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-gitmain -- ChibiOS-contrib - -Make local clone of your fork -# git clone git@github.com:username/ChibiOS-gitmain.git - -Make local branch for your feature -# cd ChibiOS-gitmain -# 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 -# git submodule add git@github.com:username/ChibiOS-Contrib.git community - -Make branch again, but now in freshly connected submodule -# 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 -# cd community -# git add . -# git commit -m "Feature implemented" -# git push origin feature:feature - -Now for parent repo -# 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 -pull 2 requests: for ChibiOS-contrib and for ChibiOS-gitmain. - -Links: -====== - -https://help.github.com/ -http://git-scm.com/ -http://chibios.org/dokuwiki/doku.php?id=chibios:guides:style_guide diff --git a/README.txt b/README.txt deleted file mode 100644 index 697a107..0000000 --- a/README.txt +++ /dev/null @@ -1,9 +0,0 @@ -ChibiOS-Contrib -=============== -Code under this directory is not part of the core ChibiOS project -and the copyright is retained by the original authors. See copyright -notes in file headers. - -Code is maintained via Github https://github.com/ChibiOS/ChibiOS-Contrib -Feel free to send pull request there. - -- cgit v1.2.3