Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.38 KB

CONTRIBUTING.md

File metadata and controls

42 lines (30 loc) · 1.38 KB

How to contribute

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!

Working on your own branch

  1. Fork the main repository. This is your own copy of the speakerinnen_liste project to work in.
  2. Clone your repository to your local machine.
  3. git checkout -b newdesign
    This creates a new branch, called newdesign in our example, in your local repository.
  4. Make your changes.
  5. git commit
  6. git push origin newdesign:newdesign
    This pushes your new branch called newdesign to your GitHub repository.

Integrating your working code to master

  1. git fetch origin
  2. git checkout origin/newdesign
    Check the code on the branch.
  3. git checkout master
    Move to master branch.
  4. git merge origin/newdesign
    You merge the newdesign branch into to master branch.
  5. git commit
  6. git push

Git(Hub) Help

If you have any questions about Git or GitHub, GitHub Help is a great resource!