reading-notes

The Cloud and GIT

fill in the blank

version control is a system that helps revisit versions of files or set files by recording _______

answer: A

A long time ago programmers made a local version control to store changes on your ____

Answer: C

_____ version control allows you to collaborate and share files

Answer C

Distributed version control is a way where files are ____ just in case centrailized fails

Answer C

Notes on Git

snapshots - A distributed version control made of snapshots, so everytime you make changes to something this DVCS will create a snapshot and store reference to it. Local operations- most neccessary information can be found in local resources so that means your process can be worked on anywhere without being online or having a VPN Tracking changes - git is always tracking your changes so don’t worry, is there is anything that goes wrong in the process it will get found out. alos data loss is very hard because once something is committed git will hold on to all the snapshots of the particular thing you are working on.

files can reside in three different states

____ data is securely stored in a local database

______ file has been changed but not on the database

A ___ file has been flagged and is waiting to be commited in the next snapshot