Git commands workflow

Shell
GIT Commands and sudo-order of operations (* = not neccessary)
1. Initialize git
	git init <--perform in target directory

2. Create new branch
	*git branch <--check branch "inventory"
	git checkout -b <name> <---create AND switch to new branch

3. Once in branch of choice use the following:
	*git status
	git add <file name(s)>
	*git diff <--check if there are any changes to commit
	*git reset <--run to discard any changes
	git commit -m "<message>"

4. Merge branch with master
	git merge <branch name> <--i.e. "master"
	*git branch -d <branch name> <--delete branch
    *git branch -D <branch name> <--delete not merged branch

5. Eat pizza!
Source

Also in Shell: