diff options
author | 2022-04-06 17:31:02 +0200 | |
---|---|---|
committer | 2022-04-06 17:31:02 +0200 | |
commit | 6416b6cb29002d2ebb1f6f8d8ebdf5c58219ac36 (patch) | |
tree | ca211fbdb095317659466787236da240dabe44a5 | |
parent | 4920cc4c56d412372f43fbc0e6c2955d3967f4bd (diff) | |
download | hyde-6416b6cb29002d2ebb1f6f8d8ebdf5c58219ac36.tar.gz hyde-6416b6cb29002d2ebb1f6f8d8ebdf5c58219ac36.zip |
Add CONTRIBUTE file
-rw-r--r-- | CONTRIBUTE | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/CONTRIBUTE b/CONTRIBUTE new file mode 100644 index 0000000..911597c --- /dev/null +++ b/CONTRIBUTE @@ -0,0 +1,28 @@ +# How developers contribute to Hyde + +It's pretty simple, just fork the +[Hyde repository](http://git.alessandroiezzi.it/hyde.git) make your changes on +a feature branch then make a `request-pull` using `-p` switch and send me the +output to me at: `aiezzi AT alessandroiezzi PERIOD it`. + +Following an example. +``` +git clone http://git.alessandroiezzi.it/hyde.git +git remote add upstream http://git.alessandroiezzi.it/hyde.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! |