Git remote Repository Login speichern

NetBeans hat es automatisch gemacht und auch PhpStorm merkt sich das Passwort für remote repositories automatisch.

VSCode tut das nicht automatisch. Es ist ein Git Befehl um Username & Passwort zu speichern.

# in der default Datei (~/.git-credentials) speichern:
git config credential.helper store
# mit einer custom Credentials Datei:
git config --global credential.helper 'store --file ~/.my-credentials'
# entfernen:
git config --global --unset credential.helper

macht man anschließend ein Push per VSCode GUI (oder Kommandozeile) sind Username & Passwort gespeichert.

docs Git – git-credential-store Documentation

book Git – Credential Storage