Git Credentials

[Solved] Git Credentials | Shell - Code Explorer | yomemimo.com
Question : git store credentials

Answered by : augusto-vicente

# local
git config credential.helper store
# global
git config --global credential.helper store

Source : | Last Update : Mon, 11 May 20

Question : git credentials

Answered by : thankful-tarsier-83jwpauiyp0s

# this will store your credentials "forever"
git config --global credential.helper store

Source : | Last Update : Tue, 16 Jun 20

Question : add credentials git linux

Answered by : shy-shrike-vbxae7d6m2t7

# This cache timeout is in seconds
$ git config --global credential.helper 'cache --timeout=3600' 

Source : https://unix.stackexchange.com/questions/379272/storing-username-and-password-in-git | Last Update : Wed, 29 Apr 20

Answers related to git credentials

Code Explorer Popular Question For Shell