What is Git?

Git is a version control system (VCS) for tracking changes in computer files and coordinating work on those files among multiple people. It is primarily used for software development, but it can be used to keep track of changes in any files

git cd thirstysix
git add *
git status
git commit -am "Message"
git push origin master

Tags