Alright, I use git through vagrant to update projects I work on, and I am still using basic authentication instead of the token authentication. And that's not going to work after Friday, so, I need to update that.
Only I'm not sure how.
If I do this command "sudo git config --list --global" in vagrant, I get:
user.name=my username
user.email=my email address
And when I do this command "sudo git config --list --local", I get a lot more stuff, none of which I think I need to change, because it's stuff like "your origin is this url, your upstream is this other url, etc."
Notably, my password isn't in there anywhere, but I suspect that it's not shown for security reasons. (I know that currently, if I push some changes to the origin, I don't need to put in my password.)
So, my question is, how do I set the authentication token in those credentials? Failing that, if I can't, how do I 'unset' my password so that it asks for my token?