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>

Comments

Popular posts from this blog

WP register_post_type() with custom CMB2 meta box

Git post receive setup at server for git push to the production from local machine