Git is a DVCS (Distributed Version Control System) that stores snapshots (commits). Git has several key components:
Files in Git are always in one of three states:
ACP or add, commit, push is an order of operations for the git to upload to the Git repository.
git add file.md or git add *will bring the modified file or files to the staging areagit commit file.md. this command commits a snapshoit of all modifications to tracked files in repository.git push origin main to finalize the changes to the selected repository.git status, the user can see exactly what files are modified, staged, and ready for commitCloning is copying all files from a repository to a local computer.git add file.md or multiple with git add *git commit file.md for individual files or git commit -a for multiple files.git push origin main