summaryrefslogtreecommitdiff
path: root/SubmittingPatches
blob: 186045b34141e10574539ccb9b990aa9df7727b3 (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
#  How to Submit Patches for libndp  #
=======================================

Send changes to libndp as patches to libndp-list@redhat.com 
with copy to jiri@resnulli.us.

Avoid using attachments because usually it doesn't work.
In another words, inline the patch inside the e-mail's body.

The simplest workflow to send changes is using git. The following
steps will guide you to do the task.

1) Clone the source code on your local machine.
$ git clone https://github.com/jpirko/libndp.git

2) Create a local branch for you
$ cd libndp
$ git checkout -b testbranch

3) Do your changes
<<do some changes>>

4) Commit them to the repository
$ git commit -a -s

5) Optionally, you can verify how it looks like in the repo
$ git show

6) Extract the patch in a standard format into /tmp directory
$ git format-patch origin -o /tmp --subject-prefix "patch libndp"

7) Use git send-email to send the patch*.
$ git send-email /tmp/0001-somepatch.patch \
  --to=libndp-list@redhat.com --cc=jiri@resnulli.us

And you are done :)

* You may need to configure smtp in order to send emails, so please
  check the "Example" section in the reference [3] below as a start.

Additional references about git:
[1] http://git-scm.com/docs/gittutorial
[2] http://git-scm.com/docs/gitworkflows.html
[3] http://git-scm.com/docs/git-send-email
[4] http://git-scm.com/book