Git is a version control system which enables you to organise your code/projects and review changes.
<h3>Branches</h3>
Create a new branch within a repo
git branch
Create and switch to new branch
git b checkout
Switch to a branch
git checkout -b
Merge branch
git merge
Delete branch
git branch -d
<h3>Removing Files</h3>
Remove file from local and stage
git rm
Remove file from Github/Gitlab but keep locally
git rm βcached
<h3>Making Changes to Remote Repo</h3>
Stage changes to repo in Github/Gitlab
git push