Top 5 League Champions per role + their builds and runes.
NOTE: You only have to do the following steps ONCE! After the steps are successfully executed, you do not have to do these steps again in your local repository.
- Clone the repository into your local folder.
- Set your 2 config settings
git config --global user.email "your GitHub email here"
git config --global user.name "your GitHub username here"
- Open up your git-bash. In Windows, you can right-click and click on "Open Git-Bash here." If this option is not available, please re-download Git.
- Type into the git-bash:
./push_to_git.sh "Your commit message here"
Please make sure you include the double quotes!
https://kivy.org/docs/installation/installation-windows.html
http://flake8.pycqa.org/en/latest/
If you are using Atom, you can install Flake8 as an extension. Otherwise, you can type in flake8 your_python_file.py
and it will print out the lint messages.
Git can be downloaded here. Useful git commands are:
git clone github_link_here
- Clone a github directory to your local computergit pull
- Use this before you code. Will pull the latest updates to your local directorygit status
- See all files that you changed.git add *
- Add all files that were changed and get them ready to be pushed to the repository.git commit -m "insert commit message here"
- Commit the changes while adding a useful comment to what you changed.git push
- Push all the committed changesgit reset hard
- If you screw up, use this to delete EVERYTHING and go back to where you last pulled. WARNING: This WILL delete any changes that you made!ls
- List all files in current directorycat filename
- Display the contents of on the terminal.cd directory_path
- Change your current directory to directory_path