I am using Pycharm, Github and pythonanywhere.
Every time I want to clone or pull a repository in pythonanywhere bash console with git, an authentication procedure show up and I have to fill it out again and that slow down my performance.
are there a way to do an automatic credential login in pythonanywhere?
You can
git config credential.helper cache --timeout n
git config credential.helper store
.To make these changes globally, call git config
with the --global
tag.