I cloned a Git repository from my GitHub account to my PC.
I want to work with both my PC and laptop, but with one GitHub account.
When I try to push to or p
For Windows Git users, after running git config --global credential.helper store
, if it still prompts for a password, you'd better check where the configuration file is written to, using this command
git config --list --show-origin
In my case, after manually editing configuration file 'C:\Program Files\Git\mingw64\etc\gitconfig', and adding the following text, it worked.
[credential]
helper = store