in order not to retype the password every time
Hey @Taleh Mammadli
Welcome to the community!
I assume you are using git CLI and wish to store your credentials so that you don't have to keep re-typing it?
If yes, as per the discussion here, you can use git credential helper to store your password.
Do note that these steps will save your credentials in Plaintext.
Run
git config --global credential.helper store
then
git pull
You will then ask to provide your username and password, which will store under ~/.git-credentials
Cheers,
Syahrul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.