Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git asking for password every time

# it will ask just one more time
git config --global credential.helper store
Comment

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

PREVIOUS NEXT
Code Example
Shell :: reinstall xcode cli tools 
Shell :: magento 2 check version command line 
Shell :: install folium using anaconda 
Shell :: git config setting 
Shell :: list users in linux 
Shell :: To check the WSL version installed on Windows 10 or 11 
Shell :: shell script to check the directory exists 
Shell :: how to install pip in ubuntu 
Shell :: nvm install lts 
Shell :: rails how to check environment 
Shell :: update submodule github 
Shell :: ubuntu check if apache is running 
Shell :: how to pull and overwrite local changes git 
Shell :: mac install gpg 
Shell :: install go ubuntu 
Shell :: how to install pip on mac 
Shell :: install pyzbar on linux 
Shell :: how to exit git branch 
Shell :: react native run ios on specific simulator 
Shell :: linux terminal check internet connection 
Shell :: install audacity linux 
Shell :: start emulator from command line 
Shell :: smart contract command deploy using hardhat 
Shell :: jupyterlab documentation 
Shell :: install virtualenv 
Shell :: how to install vlc in fedora 
Shell :: uninstall vmware workstation arch linux 
Shell :: count the number of lines in a git repository 
Shell :: create venv in windows 
Shell :: Write a shell scripting program to reverse an array 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =