We recently moved our github from one account owner to another, and now all of the sudden when I do a git pull or any git command on the remote repo, it asks me for github username and password.
My git-config says:
[github]
user = kamilski81
token = *********
Any idea how I can stop it asking me for credentials and remember everything, does the new owner have to setup my ssh keys or something of that sort?
After doing
git remote -v, the issue was that my remote was using an "https" remote rather than "git" remote. Changing the remote to use git rather than https solved everything.