SSH 를 이용한 Private Git clone

By | 2025년 12월 24일
Table of Contents

SSH 를 이용한 Private Git clone

SSH 키 생성

ssh-keygen -t ed25519 -C "your_email@example.com"

공개키를 GitHub에 등록

cat ~/.ssh/id_ed25519.pub
# 출력된 내용을 GitHub Settings > SSH and GPG keys에 추가

SSH로 clone

git clone git@github.com:skyer9/example.git

답글 남기기