I had to active 2 factor authentication on my github account and now when I'm doing a push (git push) I need to write my github name and the token generated by 2FA.
Is there a way to avoid writing the token all the time?
I had to active 2 factor authentication on my github account and now when I'm doing a push (git push) I need to write my github name and the token generated by 2FA.
Is there a way to avoid writing the token all the time?
Copyright © 2021 Jogjafile Inc.
You can use a credential helper to save the username and password (or token) you use so you don't have to enter it each time. On Linux, this is usually the
libsecret
credential helper.It's not shipped compiled by default on Debian and Ubuntu, but the source code is shipped in
/usr/share/doc/git/contrib/credential/libsecret
and can be copied to another directory. Then you can install thebuild-essential
,pkg-config
andlibsecret-1-dev
packages, and typemake
. Once built, you can copy the resulting binary somewhere in yourPATH
(such as~/bin
, if you've set one up appropriately) and then rungit config --global credential.helper libsecret
.Git will then store your token automatically for future use on GitHub.