“Git erinnern sich an die Anmeldeinformationen” Code-Antworten

Git Store -Anmeldeinformationen

// local
git config credential.helper store
// global
git config --global credential.helper store
GutoTrosla

Git -Anmeldeinformationen

# this will store your credentials "forever"
git config --global credential.helper store
Thankful Tarsier

Git erinnern sich an die Anmeldeinformationen

git config --global credential.helper store
Awful Albatross

Git Ubuntu Store Anmeldeinformationen

$ git config credential.helper store
$ git push http://example.com/repo.git
Username: <type your username>
Password: <type your password>

[several days later]
$ git push http://example.com/repo.git
[your credentials are used automatically]
Outstanding Otter

Fügen Sie Anmeldeinformationen Git Linux hinzu

# This cache timeout is in seconds
$ git config --global credential.helper 'cache --timeout=3600' 
Shy Shrike

Git erinnern Sie sich an die Anmeldeinformationen Ubuntu

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

Ähnliche Antworten wie “Git erinnern sich an die Anmeldeinformationen”

Fragen ähnlich wie “Git erinnern sich an die Anmeldeinformationen”

Weitere verwandte Antworten zu “Git erinnern sich an die Anmeldeinformationen” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen