I changed my Github account recently. I have my new username and email stored in global .gitconfig:
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[user]
name = myusername
email = myemail@gmail.com
[credential]
helper = store
username = myusername
and my password for github in .git-credentials.
Every time I push to my remote repository Github login pops up asking me for my credentials.
And when I cancel it everything works fine. I don't need to enter username or password. Remote is updated. How to get rid of that popup? I didn't have that behaviour before changing account credentials.
