git credentials

Shell
# This cache timeout is in seconds
$ git config --global credential.helper 'cache --timeout=3600' 
# this will store your credentials "forever"
git config --global credential.helper store
Source

Also in Shell: