Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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).
Comment

PREVIOUS NEXT
Code Example
Shell :: certbot add new domain pache 
Shell :: how to uninstall kernel jupyter 
Shell :: docker ls in dockerfile 
Shell :: install video studio code arm64 
Shell :: uuid 
Shell :: git find when file was deleted 
Shell :: git remove branch 
Shell :: bash colors 
Shell :: steam is not in the sudoers file. 
Shell :: how to swap ubuntu 
Shell :: No Xcode or CLT version detected! 
Shell :: No matching distribution found for tensorflow==2.0.0 
Shell :: git clone submodules 
Shell :: zoom ubuntu 18.04 
Shell :: live server nvim 
Shell :: kubectl delete all 
Shell :: WARNING: UNPROTECTED PRIVATE KEY FILE! 
Shell :: check codedeploy agent status 
Shell :: how to install g++ in fedora 
Shell :: uninstall in linux 
Shell :: extract .tz ubuntu 
Shell :: docker remove logs 
Shell :: command line how to find all files that have a string 
Shell :: ubuntu server antivirus 
Shell :: aws cli s3 bucket list 
Shell :: install ldapsearch 
Shell :: cancel a merge git 
Shell :: Cannot install in Homebrew on ARM processor in Intel default prefix (/usr/local)! 
Shell :: ping not found 
Shell :: sudo raspi config 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =