Guide for installing Git SCM¶
-
Go to: https://git-scm.com/
-
Download and install, based on your operating system below:
- Run the installer and go through the installation wizard.
- Launch the command prompt when done by pressing the
Windows
key and typing incmd
- In the command prompt run the command to test your installation:
This tests the installation:
- If it is working, move to step 6
- If it is not working, send an email or post on the GitHub discussion board.
Note
Make sure you have Homebrew installed. If you can run the command ‘brew’ then you are good to go.
-
Open launcher and search ‘Terminal’:
-
In the terminal then type
brew install git
: -
In the terminal run the command to test your installation:
This tests the installation:
- If it is working, move to **step 6**
- If it is not working, send an email or post on the GitHub discussion board.
- Set our identity to our GitHub username for Git by running:
Important
Remember to change "YOUR_GITHUB_USERNAME"
to your actual GitHub Username and include the double quotes " "
- Now set your email to the email you signed up with GitHub by running :
Important
Remember to change YOUR@EMAIL.COM
to your actual GitHub email
-
Once finished, run the following to check your email and username:
git config --list
-
If you had any issues, please check this documentation for more details or reach out for help.
-
Now you are ready to clone a repository in VS Code!