THIS PAGE IS NOT PART OF THE WIKI
Please go here if you're looking for the Streamlink Twitch GUI wiki.
This repository is shared between the actual wiki and streamlink-twitch-gui-wiki
, which is meant for reviewing and submitting changes.
Found a mistake or got something useful to share? Then please open a pull request with your changes!
Thank you for helping improve the Streamlink Twitch GUI wiki!
See Github's wiki documentation for the available formats that can be used to write wiki pages.
- Fork the repository onto your Github account
- Clone your fork locally and add the
upstream
remotegit clone 'git@github.com:YOUR_USERNAME/streamlink-twitch-gui-wiki.git' cd streamlink-twitch-gui-wiki git remote add upstream 'https://github.com/streamlink/streamlink-twitch-gui-wiki.git'
- Get the latest changes from
upstream
if you've cloned a while agogit pull upstream master
- Checkout a new branch and apply your changes
git checkout -b new-branch $EDITOR file-to-be-edited git add file-to-be-edited git commit
- Push the branch to
origin
(your fork) and open a pull requestgit push origin new-branch