If you want to participate in the development somehow, please send us an email at info@accodeing.com and let us know. Both small and large contributions are appreciated. We have a Slack channel where developers are more than welcome :)
Please start with reading the DEVELOPER_README.
To contribute:
- Fork it ( http://github.com/accodeing/fortnox-api/fork )
- Clone your fork
(
git clone https://github.com/<your GitHub user name>/fortnox-api.git) - Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request against our
developmentbranch
If you want to keep contributing, it is a good idea to add the original repo as
remote server to your clone (
git remote add upstream https://github.com/accodeing/fortnox-api ). Then you
can do something like this to update your fork:
- Fetch branches from upstream (
git fetch upstream) - Checkout your master branch (
git checkout master) - Update it (
git rebase upstream/master) - And push it to your fork (
git push origin master) (might need a--forceif branches have diverged)
If you want to update another branch:
git checkout branch-name
git rebase upstream/branch-name
git push origin branch-name