Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git save password global

git config --global user.name "your username"
git config --global user.password "your password"

git config --global credential.helper store
Comment

git save password

// for storing globally
git config --global credential.helper store
git push origin <your branch>

//for folder specific
git config credential.helper store
git push origin <your branch>

// after pushing once with password from next time it wont ask for password
Comment

save username and password in git

git config --global credential.helper store
git pull
Comment

git save password for

git config --global credential.helper "cache --timeout=3600"
Comment

PREVIOUS NEXT
Code Example
Shell :: linux while loop 
Shell :: kill port cli 
Shell :: install react dependencies 
Shell :: command line remove directory and contents 
Shell :: heic open linux 
Shell :: macos make file executable 
Shell :: git add all files command 
Shell :: install rethinkdb on ubuntu 
Shell :: git checkout 
Shell :: install aws cli v2 mac 
Shell :: update metasploit 
Shell :: unzip rar 
Shell :: bash variable lowercase 
Shell :: delete commit 
Shell :: bash count lines 
Shell :: upgrade docker-compose version 
Shell :: unzip linux 
Shell :: import external python modules in blender 
Shell :: bash random int 
Shell :: get path ubuntu 
Shell :: how to install pytorch 0.4.1 
Shell :: yarn remove package 
Shell :: sed remove first line 
Shell :: How to Change Your MySQL/phpmyadmin Password in XAMPP 
Shell :: docker rmi dangling=true 
Shell :: no space left on device 
Shell :: bash path ubuntu 
Shell :: install synergy ubuntu 
Shell :: ssh copy folder 
Shell :: see what groups a user is in linux 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =