Is there a way like to temporary store git login but not password ?
Something like using the following (source: Skip pwd typing using github)
git config --global credential.helper cache
git config --global credential.helper "cache --timeout=3600"
but without caching the password ?
Currently I use git remote address like https:// myLogin @github.com/Owner/Project.git to my terminal don't ask me my login every time, but it's not a temporary solution (or each time remain to change remote repository link to add or remove my login).