Git and command line: I just used the git config tool to shorten the amount of time it takes to upload commits to github. I entered:\
git config --global alias.add-commit '!git add -A && git commit'
The config command allows you to configure some pa...