# How to use Git: ## Basic: ```bash git commit -m "message" git push git pull git add . ``` ## Branching: ```bash git branch # see the branches git status # see anything to commit git checkout # switch branch Put New Branch On Remote git push --set-upstream origin Delete Branch On Remote git push origin --delete Delte Branch On Local git branch -d Create Branch On Local git checkout -b Merge branch git merge # make sure you are at the branch and merge the other branch ``` ## Creating file ```bash cat > vim touch ```