So you want to make Speakerinnen Liste better. Great!
Here are the steps to contribute:
##Grab an issue
Here, you'll have an overview over the open issues: rubymonsters#216. We are happy to answer your questions if you consider to help. All the issues have a link to their specification. If you want to work on an issue feel free to assign yourself.
If you have other ideas feel free to open an own issue!
- Fork the main repository.
This is your own copy of the
speakerinnen_liste
project to work in. - Clone your repository to your local machine.
git checkout -b newdesign
This creates a new branch, callednewdesign
in our example, in your local repository.- Make your changes.
git commit
git push origin newdesign:newdesign
This pushes your new branch callednewdesign
to your GitHub repository.
git fetch origin
git checkout origin/newdesign
Check the code on the branch.git checkout master
Move tomaster
branch.git merge origin/newdesign
You merge thenewdesign
branch into tomaster
branch.git commit
git push
If you have any questions about Git or GitHub, GitHub Help is a great resource!