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