Git credentials storing in cache
Windows
git config --global credential.helper wincred
git pull origin <enter your branch>
Username: <type your username>
Password: <type your password>
Ubuntu
git config credential.helper store
git pull origin <enter your branch>
Username: <type your username>
Password: <type your password>
Fedora
git config --global credential.helper gnome-keyring
git pull origin <enter your branch>
Username: <type your username>
Password: <type your password>
git config --global credential.helper wincred
git pull origin <enter your branch>
Username: <type your username>
Password: <type your password>
Ubuntu
git config credential.helper store
git pull origin <enter your branch>
Username: <type your username>
Password: <type your password>
Fedora
git config --global credential.helper gnome-keyring
git pull origin <enter your branch>
Username: <type your username>
Password: <type your password>
Comments
Post a Comment