diff --git a/cheatsheet.md b/cheatsheet.md index 98fb3eb..21a7fcf 100644 --- a/cheatsheet.md +++ b/cheatsheet.md @@ -23,3 +23,15 @@ ##### Creates a branch, and moves you onto it AT THE SAME TIME git checkout -b + +##### Moves changes to staging + git add + +##### Commits changes + git commit -m 'explanation of change' + +##### To merge with master + git checkout master + git pull origin master + git checkout update-cheatsheet + git merge master \ No newline at end of file