reading-notes

Read: 03 - Revisions and the Cloud

  1. Version Control: It’s a tool for monitoring and controlling file and directory modifications across time, frequently applied in software development.

  2. Cloning in Git: It’s the act of generating a local duplicate of a Git repository from a remote server.

  3. Command for tracking and preparing files: Employ git add < filename> to prepare a file for the subsequent commit, or use git add . to stage all alterations.

  4. Command to capture a snapshot of altered files: Using git commit -m “Your message” documents modifications along with a detailed commit message.

  5. Command to transmit altered files to GitHub: With git push origin < branch-name>, you push the committed changes to a GitHub repository.

2:45pm 10/10