Horje
git asking for password every time Code Example
git asking for password every time
# it will ask just one more time
git config --global credential.helper store
git push pull asks for login everytime
$ 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>
git asking for password every time
# start ssh-agent to remember key
eval $(ssh-agent)

# add and save key permenantly on linux
ssh-add ~/.ssh/id_rsa

# for permeenant save on mac
vim ~/.ssh/config
Host *
   AddKeysToAgent yes
   UseKeychain yes
   IdentityFile ~/.ssh/id_rsa
# write and close (:x) force close (:q!)




Shell

Related
Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it? Code Example Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it? Code Example
install pip ubuntu 20.04 using snap Code Example install pip ubuntu 20.04 using snap Code Example
remove all cache ubuntu Code Example remove all cache ubuntu Code Example
install pip in ubtunut Code Example install pip in ubtunut Code Example
installer pip3 linux Code Example installer pip3 linux Code Example

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