Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 499 Bytes

File metadata and controls

23 lines (15 loc) · 499 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>
Moving files while preserving git history
	git mv <source> <destination>