Git
Common commands
git status
: See files that git can and will commit the next time you rungit commit
.git add -all
: Tell Git to commit all modified and untracked files the next time you rungit commit
.git commit
: Create a snapshot of the project from this point in time. Note: you need to first add files usinggit add
.git log
: View your commits.