reading-notes

Reading 3

What is Version Control?

What is cloning in Git?

What is the command to track and stage files?

What is the command to take a snapshot of your changed files?

What is the command to send your changed files to Github?

Notes that I took from the slides:

Git: Sharing code and collaboration: dvcs (digital version control system) for the masses

Snapshots in time:

Keeping track:

What is GitHub?

git + GitHub = Awesome

gitflow:acp (add, commit, push):

Add: git tracking our changes

Commit: saves a snapshot

Push: takes local changes, update the cloud/remote server to GitHub online

Add: git add fileName

git status

Commit: git commit -m ‘why’

git status

Push: git push origin main