Skip to content

Commit ab3e2c5

Browse files
committed
Merge pull request NataliaLKB#5 from sohilpandya/update-cheatsheet
Update cheatsheet
2 parents fbc449c + c034411 commit ab3e2c5

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

cheatsheet.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,15 @@
2424
#### Creates a branch, and moves you onto it
2525
git checkout -b <new branch name>
2626

27-
27+
#### commit changes
28+
git commit -m 'comment'
29+
30+
#### pull original file to have latest version of file from github so that you and your team are working with the latest changes
31+
git checkout master
32+
git pull origin master
33+
34+
#### Merge with master
35+
git merge master
36+
37+
#### Push changes to remote repo on github
38+
git push origin update-cheatsheet

0 commit comments

Comments
 (0)