“So stoppen Sie, dass Git nach Benutzername und Passwort fragt” Code-Antworten

Git fragt jedes Mal nach Passwort

# it will ask just one more time
git config --global credential.helper store
Marton

So stoppen Sie, dass Git nach Benutzername und Passwort fragt

// For permanently stop git from asking credentials
$ git config credential.helper store
$ git push https://github.com/repo.git

Username for 'https://github.com': <USERNAME>
Password for 'https://[email protected]': <PASSWORD>

// User can also specify caching expire
$ git config --global credential.helper 'cache --timeout 7200'
// After enabling credential caching, it will be cached for 7200 seconds (2 hours).
Disturbed Donkey

Ähnliche Antworten wie “So stoppen Sie, dass Git nach Benutzername und Passwort fragt”

Fragen ähnlich wie “So stoppen Sie, dass Git nach Benutzername und Passwort fragt”

Weitere verwandte Antworten zu “So stoppen Sie, dass Git nach Benutzername und Passwort fragt” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen