REVISIONS AND THE CLOUD
WHAT IS GIT?
Git is a version control system that allows you to make changes inside of a document stored inside your computer without making them in real time. It makes collaboraion possible and not messy
SOME IMPORTANT COMMANDS
- git add . This command allows the user to add changes made on his/her version of the document
- git commit -m "example" This command allows the user to set changes that are to be made
- git push this command allows the user to push the changes through and will be saved as a version of the document