Send in bug reports, feature request, comments
-
Checkif a relevant issue already existsCheck if a relevant issue already exists
- If not, please feel encourage to let us know :)
-
If not, please feel encouraged to let us know :)
Please state the version you are using. In case of a development version, this is the output of
git describe --abbrev=40 --always --dirty=+
-
Look out for help wanted flags. You might just have the knowledge needed to overcome a difficulty.
Test
Feedback on pending pull requests is precious !
Contributing for the first time can be a bit intimidating. But it is worth it !
Please file an issue or edit this wiki if something is not clear.
One-shot test
At the bottom of the pull request, look for a line similar to
Add more commits by pushing to the waf-update branch on ederag/hamster.
to try out this pull request, the one-shot solution (thanks Gerald !) is
# clone the waf-update branch of ederag/hamster, into the hamster-waf-update directory. git clone --branch=waf-update git@github.com:ederag/hamster.git hamster-waf-update # go to the newly created directory, holding the PR version cd hamster-waf-update
Then follow these instructions.
Of course creating a new directory to try out any new modification can become tedious; it is possible to create a local clone of a fork, linked to the upstream (main project, read-only) repository.
Fork
-
Fork this project, making sure to follow all the steps, until
git remote -v
displaysfetch
andpush
lines both fororigin
andupstream
. -
In the fork clone directory, edit
.git/config
, adding the line (found in the git book)fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
It is then possible to try out PR 421 (replace by the relevant PR number) with
git fetch --all git checkout pr/421
Contribute code
- Fork this project
-
Before any change, it is good practice to issue
git fetch --all # get all information available (including upstream) git checkout upstream/master # start from the upstream master branch
-
Create a topic branch - git checkout -b my_branchCreate a topic branch:
git checkout -b my_branch
- Push to your branch - git push origin my_branch
-
Push to your branch -
git push origin my_branch
or just
git push
, which will provide the correct command to use.Follow the link that appears, or go to your github fork repo to...
-
Submit a Pull Request with your branchSubmit a Pull Request with your branch
-
That's itThat's it!
Review Code
- If you feel somewhat competent with python but don't want to commit to write code yourself, we could still use a hand having you review our PRs.
- No amount of testing and linting is a substitute for another set of eyes going over our code.
- If you are game, please get in touch and we will either let you know if there is a new PR or you just use githubs watch function.