Shell/Bash: git credential save Example
Shell/Bash Example: This is the "git credential save" Example. compiled from many sources on the internet by SimpleTutorials.org
store git credentials
// local git config credential.helper store // global git config --global credential.helper store
git credential save
$ git config credential.helper store $ git push http://example.com/repo.git Username:Password: [several days later] $ git push http://example.com/repo.git [your credentials are used automatically]
* Summary: This "git credential save" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!