Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 418 Bytes

cheatsheet.md

File metadata and controls

20 lines (13 loc) · 418 Bytes

Git Command Cheat Sheet

Cloning your remote directory
	git clone <remote directory>
Checking that status of your local repository
	git status
Creating a new branch for you to work on
	git branch <new branch name>
See all branches in your remote repository
	git branch -a
Moving onto a branch
	git checkout <branch name>
Deleting a branch
	git branch -d <branch name>