Table of Contents
Git Setup
GitKraken – Git GUI
For the more GUI-inclined I’m quite fond of a nice piece of software called GitKraken. It’s a frequently-updated and very smooth GUI tool for Git.
Feel free to give it a try using our referral link!
Windows – CLI
The Git Client can be downloaded and installed from
https://git-scm.com/downloads
Linux – CLI
Install the Git client from your package manager of choice. I.e.
1 |
sudo apt install git |
Mac – CLI
Apple ship their own version of Git, however it may not always be the most up to date.
My personal recommendation is to install the Git CLI through homebrew.
If you do not have Homebrew, installation instructions can be found at the link above.
1 |
brew install git |