how to add git repo in global credentials code example
Example 1: git credentials
# this will store your credentials "forever"
git config --global credential.helper store
Example 2: add credentials git linux
# This cache timeout is in seconds
$ git config --global credential.helper 'cache --timeout=3600'