# git add
# git commit -m "comment"
# git push
# git push upstream master

// Get update from master :
# git pull upstream master

# git config --global alias.st 'status'

// Credentials

// Store credentials in cache 
# git config --global credential.helper "cache --timeout=3600"

// Store credentials permanently 
# git config credential.helper store

// remove credentials 
# git config --unset credential.helper


More on alias
More on credentials storage