Settings/Setting

Window Powershell -> git ssh-add 사용하기

Juzdalua 2025. 1. 10. 20:34

0. 에러


1. ssh-agent 서비스가 사용중인지 확인한다.

# ssh-agent 서비스 작동 확인
Get-Service ssh*

 


2. 관리자 권한으로 파워쉘을 실행하고 아래 서비스를 실행한다.

Set-Service -Name ssh-agent -StartupType Automatic
Start-Service ssh-agent


3. 실행 확인

 


4. .ssh 폴더에 config 파일을 알맞게 수정한다.

# config
# Juzdalua
Host github.com
	HostName github.com
	User git
	IdentityFile ~/.ssh/id_rsa_juzdalua