Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.13 KB

CONTRIBUTING.md

File metadata and controls

43 lines (30 loc) · 1.13 KB

Contributing

Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.

Getting Started

Setting up Fake-Stream for local development.

  1. Fork the Fake-Stream repo on GitHub.

  2. Clone your fork locally:

$ git clone https://github.com/your_username_here/Fake-Stream
  1. Add a tracking branch which can always have the latest version of Fake-Stream.
$ git remote add fake-stream https://github.com/Nibba2018/Fake-Stream
$ git fetch fake-stream
$ git branch fake-stream-master --track fake-stream/master
$ git checkout fake-stream-master
$ git pull
  1. Create a branch from the last dev version of your tracking branch for local development:
$ git checkout -b name-of-your-bugfix-or-feature
  1. Install it locally:

  2. Now make your changes locally:

$ git add .
$ git commit -m "Your detailed description of your changes."
$ git push -u origin name-of-your-bugfix-or-feature
  1. Submit a Pull Request on Github to the master branch.