Where to store the personal access token from GitHub?

后端 未结 5 1325
难免孤独
难免孤独 2021-01-30 02:45

Is it necessary to store the personal access token somewhere locally on the machine after generating it in GitHub?

If yes, is there any preferred way where it could be

5条回答
  •  天涯浪人
    2021-01-30 03:33

    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 credential.helper store
    

提交回复
热议问题