git - Using GitHub, how do I enable the function that requires me to login every time I push -
i new github , beginning use it.
i know how have github require me login remote repo server whenever push out new code. on personal computer fine, 1 other computers use lot , share othe people, want have more security no 1 else messes github.
i required log in when first added first repo source (bitbucket), after no longer had enter in username , password.
is there way make me enter in login information every time want push? thanks.
you check (git config -l
) if there credential helper remove:
git config --local --remove-section credential
and make sure have git config core.askpass true
.
Comments
Post a Comment