Avoid to typing username and password during Git push or pull every time
# setup git credential cache git config credential.helper store git config --global credential.helper 'cache --timeout 7200' # After enabling credential caching, it will be cached for 7200 seconds (2 hours).