Version Control can be defined as a system that records and lists changes for various versions of a set of files.
Cloning is the process of creating a copy of an existing Git repository by using the clone command with a repo’s URL from a different server
Single File: git add filename
All Files: $ git add *
Git commit -m “summary of change”
$ git push origin main
This command pushes changes from the local “main”” branch to the remote repository named “origin”.
Read