Installing git
The perferred way of downloading ChadMusic is by cloning the bot's repository to a directory anywhere on your system. By cloning the bot, you'll be able to update the bot when any new updates become available. For this case, you will need to install git to the system you'll be running the bot on.
Windows
You can download the latest version of git below.
Chocolatey
If you have Chocolatey installed, git can be installed this way.
choco install git
Scoop
If you have Scoop installed, git is available in the main bucket.
scoop install git
Mac
You can install git from either Homebrew or from MacPorts.
# Homebrew
brew install git
# MacPorts
sudo port install git
Linux
Ubuntu
git is available in Ubuntu's repositories.
sudo apt update
sudo apt install git
Debian
git is available in Debian's repositories.
sudo apt-get update
sudo apt-get install git
Fedora
git is available in Fedora's repositories.
sudo dnf update
sudo dnf install git