mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 10:40:34 -05:00
856 B
856 B
title | date | draft | tags | medium_enabled | |
---|---|---|---|---|---|
Git Credential Store | 2020-05-25T22:30:49-04:00 | false |
|
true |
Normally it is recommended to setup a SSH key with your Git hosting tool with choice. Though if that is not practical, another way you can avoid having to put in your git username and password every time you push your code is to make use of Git's credential store.
To enable it globally across your projects
git config --global credential.helper store
Then you can edit the file ~/.git-credentials
with the following format
https://username1:password1@site1.com
https://username2:password2@site2.com
It is recommended to set your .git-credentials
file with the same permissions you would see in a SSH private key file. Read and write permissions for the user only.
chmod 600 ~/.git-credentials