Set Credential In Git

[Solved] Set Credential In Git | 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 : add credentials to git

Answered by : poor-peccary-nvyakynn0ao7

git config user.name "your username"
git config user.password "your password"

Source : | Last Update : Sun, 29 Mar 20

Question : set credential in git

Answered by : awful-albatross-irng1jj47zzu

git config --global credential.helper store

Source : | Last Update : Mon, 04 May 20

Answers related to set credential in git

Code Explorer Popular Question For Shell