About 99,100 results
Open links in new tab
  1. How can I save username and password in Git? - Stack Overflow

    I want to use a push and pull automatically in Git Extensions, Sourcetree or any other Git GUI without entering my username and password in a prompt, every time. So how can I save my …

  2. bash - Adding Git credentials on Windows - Stack Overflow

    Oct 23, 2017 · In windows Git's credential.store plugin which store the credentials in CredentialManager utility is named manager. In order to set it as credential store for git (if not …

  3. How do I store credentials per repository in Git Credential …

    Feb 22, 2023 · I have two GitHub accounts, work and personal, for which I want to securely store credentials in Windows 10. git config --global credential.helper manager only sets a single …

  4. How to re-authorize the OAuth Application 'Git Credential Manager'

    Mar 29, 2021 · I fixed this with the following steps. Open Credential Manager in Windows and delete the existing credential for github.com Re-initialise the cred manager in git bash: git …

  5. How setup credentials in Git Credential Manager on Linux?

    Oct 17, 2022 · dpkg -i gcm-linux_amd64.2.0.785.deb git-credential-manager-core configure git config --global credential.credentialStore gpg pass init <gpg-id> I tried cloning a cloud-based …

  6. Git keeps prompting me to choose an account - Stack Overflow

    Jul 18, 2023 · 26 On Windows, Open the "Windows Credential Manager" Look for GitHub credentials and remove duplicates.

  7. 'credential-manager' is not a git command - Stack Overflow

    Jul 14, 2023 · It seems something is wrong with your Windows Credential Manager. Try git config --global credential.helper store. It stores the username and password/token in ~/.git …

  8. Visual Studio Code is always asking for Git credentials

    I started using Visual Studio Code, and I was trying to save my test project into GitHub, but Visual Studio Code is always asking for my GitHub credentials. I have installed in my PC GitHub …

  9. Where to store my Git personal access token? - Stack Overflow

    335 In my case, in Ubuntu, the accepted solution didn't work with a message like git: 'credential-manager' is not a git command but store instead of manager worked well: git config --global …

  10. git - Is there a way to cache https credentials for pushing commits ...

    GitHub's help also suggests that if you're on Mac OS X and used Homebrew to install Git, you can use the native Mac OS X keystore with: git config --global credential.helper osxkeychain For …