Is Ther Any Way To Save Passwords Securely Of Github

[Solved] Is Ther Any Way To Save Passwords Securely Of Github | 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 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 : is ther any way to save passwords securely of github in linux git

Answered by : arun-5zjvnz930s1o

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://stackoverflow.com/questions/35942754/how-can-i-save-username-and-password-in-git | Last Update : Sat, 21 May 22

Answers related to is ther any way to save passwords securely of github in linux git

Code Explorer Popular Question For Shell