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
- Slides 33-37 have illustrated graphs helping you understand.