This file will summarize what I learned from todays discussion
here are some commands for making changes in the cloud
- git add name_of_file
- git commit -m “your commit message here”
- git push origin main
what is git?
- git is a DVCS that stores data in a file system made up of snapshots.git mostly relies on local operations, most necessary information can be found in local resources. this allows for process expediency because a project’s history resides on the local disk, eliminating the need to fetch history information from the server, and allowing one to continue work on a project even when not online or on a VPN.