Horje
how to stop git asking for username and password Code Example
git asking for password every time
# it will ask just one more time
git config --global credential.helper store
how to stop git asking for username and password
// For permanently stop git from asking credentials
$ git config credential.helper store
$ git push https://github.com/repo.git

Username for 'https://github.com': <USERNAME>
Password for 'https://USERNAME@github.com': <PASSWORD>

// User can also specify caching expire
$ git config --global credential.helper 'cache --timeout 7200'
// After enabling credential caching, it will be cached for 7200 seconds (2 hours).




Shell

Related
pm2 kill all Code Example pm2 kill all Code Example
how to install python idle in ubuntu Code Example how to install python idle in ubuntu Code Example
exec user process caused: exec format error Code Example exec user process caused: exec format error Code Example
swapping of two numbers without using third variable in shell script Code Example swapping of two numbers without using third variable in shell script Code Example
jupyter uninstall Code Example jupyter uninstall Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11