I work on several computers, and I would make sure than git never stores my password while I push. So in short I want git to always ask for my github password.
Is that possible?
I am frustrated than on Mac, for some reason it always store my password in a keychain and I have to remove it manually each time.
I'm using the command line.
EDIT:
This answer gave me a clue to solve the problem:
How do I disable git's credential helper for a single repository?
In the terminal run this:
git config --local credential.helper ''
Alternatively you can edit your .git/config file and have this:
[credential]
helper = ''
I don't have the root password (for some reason an admin password is not a valid root password, go figure).