Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Latest commit

 

History

History
39 lines (24 loc) · 1.22 KB

CONTRIBUTING.rst

File metadata and controls

39 lines (24 loc) · 1.22 KB

Contributing

  1. Fork it.
  2. Clone it

Make sure you have installed pygame installed on your system

create a virtualenv

$ virtualenv develop              # Create virtual environment
$ source develop/bin/activate     # Change default python to virtual one
(develop)$ git clone https://github.com/tasdikrahman/spaceShooter.git
(develop)$ cd spaceShooter

Or, if virtualenv is not installed on your system:

$ wget https://raw.github.com/pypa/virtualenv/master/virtualenv.py
$ python virtualenv.py develop    # Create virtual environment
$ source develop/bin/activate     # Change default python to virtual one
(develop)$ git clone https://github.com/tasdikrahman/spaceShooter.git
(develop)$ cd spaceShooter
  1. Create your feature branch ($ git checkout -b my-new-awesome-feature)
  2. Commit your changes ($ git commit -am 'Added <xyz> feature')

Conform to PEP8 and if everything is running fine, integrate your feature

  1. Push to the branch ($ git push origin my-new-awesome-feature)
  2. Create new Pull Request

Hack away!