diff options
author | 2023-03-01 11:28:01 +0100 | |
---|---|---|
committer | 2023-03-01 11:28:01 +0100 | |
commit | f0d80cae93fc3916ccaf0482003cc162b7e6b15d (patch) | |
tree | 5cabcb39b7b2b3e067b65c63413442814b81fe17 | |
parent | b846fbcd7ccd61ac52d4299d199244dbbaafd258 (diff) | |
download | log-f0d80cae93fc3916ccaf0482003cc162b7e6b15d.tar.gz log-f0d80cae93fc3916ccaf0482003cc162b7e6b15d.zip |
Add CONTRIBUTE.md
-rw-r--r-- | CONTRIBUTE.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/CONTRIBUTE.md b/CONTRIBUTE.md new file mode 100644 index 0000000..1774675 --- /dev/null +++ b/CONTRIBUTE.md @@ -0,0 +1,28 @@ +* How developers contribute to liblog + +It's pretty simple, just fork the +[liblog repository](https://git.alessandroiezzi.it/libs/c/log.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 https://git.alessandroiezzi.it/libs/c/log.git + git remote add upstream https://git.alessandroiezzi.it/libs/c/log.git + git remote set-url origin your-repository.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! |