Answers for "save creds git"

3

git credential save

$ git config credential.helper store
$ git push http://example.com/repo.git
Username: <type your username>
Password: <type your password>

[several days later]
$ git push http://example.com/repo.git
[your credentials are used automatically]
Posted by: Guest on March-02-2020
0

store credential in git linux

To store the token git credential so that you don't have to type token everytime, use this command before pushing.
git cofig credential.helper store
Posted by: Guest on August-15-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language