Created
May 17, 2019 10:17
-
-
Save Hazem-Ben-Khalfallah/eb380c5011039efb56708b87a120f3b6 to your computer and use it in GitHub Desktop.
[Save git credentials] I want to use a push and pull automatically without entering my user and password in a prompt, every time. #git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# run | |
git config credential.helper store | |
#then | |
git pull | |
# user credentials will be saved in ~/.git-credentials in PLAIN text | |
# if user credentials are changed in the future, simply execute | |
git pull | |
# and provide a new password and it will work like before. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment