Version Control
Examples in
Shell
git clone --depth=1 https://github.com/awesome/lib.git
# Commit changes only after staging is in a good state.
git commit -m "My changes"
# Automically stage files that have been modified or deleted and commit.
git commit -am "My changes"
git status