Skip to content

Latest commit

 

History

History
25 lines (12 loc) · 434 Bytes

pulling-and-pushing.md

File metadata and controls

25 lines (12 loc) · 434 Bytes

Part 5 - Pulling and Pushing

Fundamentals

git push

Use this for publishing your revisions.

git pull

Precisely how this command works is to first git fetch a pecific snapshot with given parameters and git merge
This would keep your local repository in sync with the most up-to-date push.

git merge


Additional

Notes

  1. Slides 33-37 have illustrated graphs helping you understand.