Basic Github Usage

Create New Git Repository

git init

Clone a Repository

git clone https://github.com/USER_NAME/REPO_NAME.git

Commit changes

git add .

git commit -m "Changes made"

git push origin [Branch being worked on]

View all branches

git branch