ssh key 두개인 상태에서 로컬의 폴더를 원격 저장소랑 연결하기

YuRim Lee·2023년 9월 25일
0

ssh key 두개인 상태에서 로컬의 폴더를 원격 저장소랑 연결하기

잘못연결해서 검색해서 들어오셨다구요 ?
그럼 이명령어를 치세요

git remote remove origin
  1. 먼저 연결을 원하는 계정 들어가서 repository 생성한다.

  2. 연결하는 명령어 친다.

git remote add orgin git@[sshconfig에 등록해둔 HOST]:[깃아이디]/[레파지토리이름].git

// 예시
git remote add orgin git@github.com:yurim-hgr/reactReview.git
  1. 확인
git remote -v
  1. 브랜치 생성
git branch -M main
  1. 원격 저장소에 push 하기
git push -u origin main

자꾸까먹어서 쓰는글

profile
성장하는개발자

0개의 댓글