Git Ubuntu Store Credential

[Solved] Git Ubuntu Store Credential | Shell - Code Explorer | yomemimo.com
Question : git ubuntu store credential

Answered by : outstanding-otter-wzsme7a3yclr

$ 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]

Source : https://git-scm.com/docs/git-credential-store | Last Update : Mon, 09 Mar 20

Question : store credential in git linux

Answered by : arjun-gautam

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

Source : | Last Update : Sun, 22 Aug 21

Answers related to git ubuntu store credential

Code Explorer Popular Question For Shell