blob: 3cfc241b31ffd4412cf00a5dd56f83fbf7ed8247 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
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
|