blob: 33ab92860f1848e2d6131345cc0e641a30f73a6d (
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
|
* How developers contribute to csv-utils
It's pretty simple, just fork the
[csv-utils repository](http://git.alessandroiezzi.it/csv-utils.git) make your changes on
a feature branch then make a `request-pull` using `-p` switch and send me the
output at: `aiezzi AT alessandroiezzi PERIOD it`.
Following an example.
git clone http://git.alessandroiezzi.it/csv-utils.git
git remote add upstream http://git.alessandroiezzi.it/csv-utils.git
git remote set-url origin your-repository-online.git
Make a branch from `master`:
git checkout -b awesome-feature
Make your changes. Be sure to push your work:
git push -u origin awesome-feature
Then make a `request-pull`:
git request-pull -p origin/master awesome-feature
Put the output on a separate file and send me that via email.
I'll wait for you!
If you find this repository on GitHub, feel free to fork it and then make a
pull-request.
|