Shell/Bash: store git credentials Example
Shell/Bash Example: This is the "store git credentials" Example. compiled from many sources on the internet by SimpleTutorials.org
store git credentials
// local git config credential.helper store // global git config --global credential.helper store
git credentials
# this will store your credentials "forever" git config --global credential.helper store
add credentials git linux
# This cache timeout is in seconds $ git config --global credential.helper 'cache --timeout=3600'
how to store git credentials
git config --global credential.helper store
add username and password to git
git pull
* Summary: This "store git credentials" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!