“Git pociągnij za pomocą nazwy użytkownika i hasła” Kod odpowiedzi

Git pociągnij za pomocą nazwy użytkownika i hasła

Update the URL of origin remote using SSH instead of HTTPS;
git remote set-url origin [email protected]:username/repo.git

OR

Make Git store the username and password and it will never ask for them.

git config --global credential.helper store

Save the username and password for a session (cache it);

git config --global credential.helper cache

You can also set a timeout for the above setting

git config --global credential.helper 'cache --timeout=600'

Git will never ask for your credentials again.
Caffeinated Developer

Git pociągnij za pomocą nazwy użytkownika i hasła Linux

In a terminal, run:

$ git config --global credential.helper cache

# Set git to use the credential memory cache
To customize the cache timeout, you can do:

$ git config --global credential.helper 'cache --timeout=3600'
# Set the cache to timeout after 1 hour (setting is in seconds)
sanju

Odpowiedzi podobne do “Git pociągnij za pomocą nazwy użytkownika i hasła”

Pytania podobne do “Git pociągnij za pomocą nazwy użytkownika i hasła”

Więcej pokrewnych odpowiedzi na “Git pociągnij za pomocą nazwy użytkownika i hasła” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu