The discord bot for the Linux Community discord server!
For any doubts here, contact Donut#4427 please.
Step 1: Fork & Clone the repository
$ git clone link-to-my-forked-repository.git helper-sh # usually link will be https://github.com/YourUserName/helper-sh
$ cd helper-sh
➜ How to install discord.py 2.0a
- Firstly, setup a virtual environment
$ pip install virtualenv
$ cd src
$ virtualenv venv
$ ./venv/bin/activate # windows (i think so, feel free to correct this if i'm wrong)
$ source ./venv/bin/activate # macos or linux
- Then install the 2.0a
$ git clone https://github.com/Rapptz/discord.py discord.py
$ cd discord.py
$ pip install -U .[voice]
Step 2: Checkout a new branch
$ git checkout -b my-new-feature
Step 3: Code the feature Am i supposed to tell you how to do this one too?
Step 4: Commit the feature
$ git commit -m "define your feature here"
- For noobs like you (and me) who don't know how to write a commit message:
- How to write a proper commit message
Step 5: Push the feature
$ git push origin my-new-feature # branch name should be same as the one you checked out
Step 6: Create a pull request