0

I have generated a personal access token for github enterprise. I have also updated in windows credential manager. However whevever I run any git command from git bash in windows 10, it prompts for username and password.

How can I overcome this?

Raghav Gupta
  • 341
  • 1
  • 6
  • 20
  • 1
    https://stackoverflow.com/questions/35942754/how-to-save-username-and-password-in-git-gitextension – xiawi May 22 '20 at 06:44

1 Answers1

0

If Git prompts you for a username and password every time you try to interact with GitHub, you're probably using the HTTPS clone URL for your repository. Using an HTTPS remote URL has some advantages: it's easier to set up than SSH, and usually works through strict firewalls and proxies.

  • I know that, how can I store the personal ccess token as password, so it never prompts me again and again with username and password? – Raghav Gupta May 22 '20 at 06:20