|
|
@@ -0,0 +1,44 @@
|
|
|
+# Contribute to Vinora Project
|
|
|
+Firstly -- thank you for your interest in this project!
|
|
|
+We deeply appreciate any reasonable help.
|
|
|
+
|
|
|
+If you have any questions feel free to e-mail me: `parthen [@] riseup.net`
|
|
|
+or telegram me: @parthen.
|
|
|
+
|
|
|
+### Preamble
|
|
|
+This is *private* git repository. That means me (Evgeniy "Parthen" Parfenyuk)
|
|
|
+and only me own this website (git.parthen.site) and git server.
|
|
|
+
|
|
|
+If you don't agree with my rules -- all of Vinora Project programs are free
|
|
|
+as in freedom, so make your own fork (on *your* site) and your own rules.
|
|
|
+
|
|
|
+### Newbies are welcome! (It *is* a Good First Issue)
|
|
|
+
|
|
|
+Vinora's programs meant to be simple not only in use, but also in develop.
|
|
|
+Don't afraid to ask silly questions :)
|
|
|
+
|
|
|
+## Get involved:
|
|
|
+All project files should follow [CONVENTIONS.md](CONVENTIONS.md) please,
|
|
|
+read them carefully.
|
|
|
+
|
|
|
+### Basics of Git (and git.parthen.site)
|
|
|
+[...]
|
|
|
+
|
|
|
+### Development
|
|
|
+Development is going primary on [git.parthen.site](https://git.parthen.site).
|
|
|
+You can't register an account without approval: email me
|
|
|
+(`parthen [@] riseup.net`) with your preferable login.
|
|
|
+
|
|
|
+It can be overkill if you want to submit a simple fix. So, you can email
|
|
|
+me patch instead:
|
|
|
+
|
|
|
+1. Make a new branch (edit branch-name):
|
|
|
+```
|
|
|
+git checkout -b <fix/branch-name>
|
|
|
+```
|
|
|
+2. Make a patch:
|
|
|
+```
|
|
|
+git format-patch develop --stdout > branch-name.patch
|
|
|
+```
|
|
|
+3. You will have a new .patch file with all changes. Email me this file
|
|
|
+(also, write how to mention you in AUTHORS.md file).
|