How to save username and password in Git?
问题 I want to use a push and pull automatically in GitExtension , without entering my user and password in a prompt, every time. So how can I save my credentials in GIT ? 回答1: Run git config --global credential.helper store then git pull provide a username and password and those details will then be remembered later. The credentials are stored in a file on the disk, with the disk permissions of "just user readable/writable" but still in plaintext. If you want to change the password later git pull