Clone this to your computer with Git Bash:
cd ~/Documents
git clone https://github.com/seamonsters-2605/CompetitionBot2018
Then open PyCharm, choose File > Open, browse to your Documents, and choose CompetitionBot2018 (you might have to click the refresh button for it to appear).
- Get the latest changes from GitHub:
git pull - Create a new branch:
git branch name-of-your-branch
git checkout name-of-your-branch
git push -u origin name-of-your-branch
- Switch to a different branch:
git checkout name-of-your-branch - When you make a change:
git add name_of_file.py
git commit -m "What you changed."
git push