git int (basically make a .git directory) git clone https://git.cmed.us/tech.git git.cmed.us to the current local dirgit status git branch git checkout <branch-name> There is also git checkout -b <branch-name> which is the same as git branch , but makes that new branch active.git diff <branch-name> <other-branch-name> git add <file> <file> ... (use git status to see what's staged and what's not)git reset <file> git add takes files out of stage git commit -m "what's going on" git push git push <origin> <breach> push the current branch or the repo to the site (origin) you originally downloaded it with the git clone command. git pull git pull <origin> <master> git clone command). git log --all --decorate --oneline --graph |