graph LR A[Our local machine] --git push ---> B B["Remote Repo on GitHub"] --git pull--> A
Not for:
By the end of this workshop, you will be able to:
Version control is a systematic approach to record changes made in a file, or set of files, over time. This allows you and your collaborators to track the history, see what changed, and recall specific versions later when needed.
Git only tracks what’s changed between commits (called a diff):
Diff Example
graph LR A[Our local machine] --git push ---> B B["Remote Repo on GitHub"] --git pull--> A
Everyone is a member of one of two repositories:
Hopefully you will now be able to