Git Save Password Global

[Solved] Git Save Password Global | Shell - Code Explorer | yomemimo.com
Question : git save password global

Answered by : trinix

git config --global user.name "your username"
git config --global user.password "your password"
git config --global credential.helper store

Source : | Last Update : Thu, 08 Apr 21

Question : git save username and password

Answered by : awful-albatross-irng1jj47zzu

git config --global credential.helper store

Source : | Last Update : Mon, 04 May 20

Question : git save password

Answered by : hassan-raza

// for storing globally
git config --global credential.helper store
git push origin <your branch>
//for folder specific
git config credential.helper store
git push origin <your branch>
// after pushing once with password from next time it wont ask for password

Source : | Last Update : Fri, 23 Apr 21

Question : save username and password in git

Answered by : joyous-jellyfish-j1zeopw4xysr

git config --global credential.helper store
git pull

Source : https://stackoverflow.com/questions/35942754/how-to-save-username-and-password-in-git | Last Update : Fri, 10 Sep 21

Answers related to git save password global

Code Explorer Popular Question For Shell