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 Store Username and Password

$ git config --global github.user defunkt
$ git config --global github.token 6ef8395fecf207165f1a82178ae1b984

Applications and scripts can easily access this information:
$ git config --global github.user
defunkt
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 :: set all permissions to folder in ubuntu 
Shell :: ghostscript on ubuntu 
Shell :: git show staged files 
Shell :: pypdf2 
Shell :: remove netbeans snap 
Shell :: kill x-server 
Shell :: docker-compose install in centos 7 
Shell :: ubuntu top bar hide 
Shell :: how to make bat file delete itsself 
Shell :: list interfaces centos 
Shell :: install ldapsearch 
Shell :: babel core 
Shell :: permission denied bash 
Shell :: docker how to run command in mysql 
Shell :: Cannot install in Homebrew on ARM processor in Intel default prefix (/usr/local)! 
Shell :: git remote list urls 
Shell :: root check bash script 
Shell :: git user email 
Shell :: visual studio code for ubuntu 20.04 
Shell :: git commit number of lines changed 
Shell :: update git repo local 
Shell :: cshell find file by name 
Shell :: kill port in windows 
Shell :: expo typescript 
Shell :: office 2016 activation crack 
Shell :: random 6 digit number c# 
Shell :: command count files 
Shell :: delete distro 
Shell :: how to install tar.gz in ubuntu 
Shell :: grep text in files 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =