summaryrefslogtreecommitdiff
path: root/CONTRIBUTE
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-06-20 11:45:38 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-06-20 11:45:38 +0200
commit26e4c51048a98d3632a31643fbdad4c48023bc45 (patch)
treedd4a5c85c9a2fe5f8e513a35cbcc11a8006ebc9b /CONTRIBUTE
downloadremote-control-26e4c51048a98d3632a31643fbdad4c48023bc45.tar.gz
remote-control-26e4c51048a98d3632a31643fbdad4c48023bc45.zip
Initial commitHEADmaster
Diffstat (limited to 'CONTRIBUTE')
-rw-r--r--CONTRIBUTE31
1 files changed, 31 insertions, 0 deletions
diff --git a/CONTRIBUTE b/CONTRIBUTE
new file mode 100644
index 0000000..33ab928
--- /dev/null
+++ b/CONTRIBUTE
@@ -0,0 +1,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. \ No newline at end of file