Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
Setting up Fake-Stream
for local development.
-
Fork the Fake-Stream repo on GitHub.
-
Clone your fork locally:
$ git clone https://github.com/your_username_here/Fake-Stream
- 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
- Create a branch from the last dev version of your tracking branch for local development:
$ git checkout -b name-of-your-bugfix-or-feature
-
Install it locally:
- Check Setting up section in README.md
-
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
- Submit a Pull Request on Github to the
master
branch.