Answers for "git push ubuntu need to supply email and password everytime"

2

git push pull asks for login everytime

$ git config credential.helper store
$ git push https://github.com/repo.git

Username for 'https://github.com': <USERNAME>
Password for 'https://[email protected]': <PASSWORD>
Posted by: Guest on June-26-2020
0

git push ubuntu need to supply email and password everytime

# inside of ~/.netrc
machine github.com
       login <user>
       password <password>
Posted by: Guest on December-26-2020
-1

git push ubuntu need to supply email and password everytime

machine github.com
       login <user>
       password <password>
Posted by: Guest on December-26-2020

Code answers related to "git push ubuntu need to supply email and password everytime"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language