This quick video covers basic git commands
git init
touch first-file.txt
git status
git add .
git commit -m
git remote add origin [email protected]:username/repository.git
git remote -v
git pull origin master --allow-unrelated-histories
git push origin master