Skip to content

Permanently authenticate with a Git repository

Last Updated on 21/08/2022

permanently authenticate with a git repository post logo

This post shows how to permanently authenticate with a Git repository, so you don’t need to type credentials when pushing to a remote.

Enable the credential storing:

git config --global credential.helper store

Then, attempt to push changes (if though everything is up-to-date) so the credentials are stored:

git push https://github.com/<your_username>/<your_repo>.git

Finally, provide the username and password/token when prompted.

For now on, the next time you push any changes you won’t be prompted to supply your credentials.

Hope it helps. Cya!

References

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *