git add .`` OR git add path/to/fileORgit add *.png`
git add .`` OR
OR
git commit -m "Your Message"
git push origin YourBranchName (gh-pages)
git push origin YourBranchName
List branches: git branch
git branch
Create branch with the current branch git checkout -b BranchName
git checkout -b BranchName
delete local branch git branch -D BranchName
git branch -D BranchName
push delete branch git push origin :branchName
git push origin :branchName
merge a branch into current branch
git merge BranchNameToMergeFrom