A beginners video to git and github basics
Installing Git
1. WINDOWS
install git bash from the website https://git-scm.com/
2. MAC
Method 1:
Using git for mac installer
go to https://sourceforge.net/projects/git-...
follow the prompts to install git
Method 2:
Using brew
Type the following:
comand + space
brew install git
To check if it installed type:
git --version
3. UBUNTU
Type:
sudo apt update
sudo apt install git
To check if it installed type:
git --version