Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git credential cache

# Set credential cache to avoid typing password every time
# (Timeout time is in seconds i.e. 14 hours)
# For Ubuntu

git config credential.helper 'cache --timeout=50400'
Comment

ubuntu git credentials cache

# Set the time to remember your credentials for (in seconds). The command below sets it to 10 minutes.
$ git config --global credential.helper 'cache --timeout=600'
Comment

git cache credentials

# Cache for 1 hour
git config --global credential.helper "cache --timeout=3600"

# Cache for 1 day
git config --global credential.helper "cache --timeout=86400"

# Cache for 1 week
git config --global credential.helper "cache --timeout=604800"
Comment

PREVIOUS NEXT
Code Example
Shell :: linux birthday 
Shell :: bash timeout 
Shell :: linux find a file anywhere 
Shell :: install youtube-dl on ubuntu 20.04 
Shell :: nano duplicate line or copy paste line 
Shell :: how to chnage kubectl to k 
Shell :: comments in linux 
Shell :: how to ping and know if the target is alive Kali Linux 
Shell :: restart command windows server 2008 
Shell :: count specific number in array powershell 
Shell :: trickle usage 
Shell :: add platform toolchain to linux 
Shell :: ned red installation guide ubuntu 
Shell :: brew 
Shell :: install jake 
Php :: kill phpstorm 
Php :: ubuntu restart php-fpm 
Php :: wordpress get child theme uri 
Php :: laravel sail alias 
Php :: laravel success message 
Php :: htaccess post max size 
Php :: laravel model tablename 
Php :: laravel failed jobs retry 
Php :: laravel command to create symlink storage 
Php :: laravel get current domain 
Php :: get all values inside session laravel 
Php :: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes (SQL: alter table `users` add unique `users_email_unique`(`email`)) 
Php :: url decode function in php 
Php :: php generate random string fixed length 
Php :: use app name in laravel blade 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =