-깃 설치
yum -y install git
-ssh key 생성
cd /root/.ssh
ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
경로/키이름 입력
암호 없이 엔터
cat 키이름.pub
복사해서 깃허브 settings - ssh and gpg keys에 등록
-ssh key가 여러개인 경우 설정
vim /root/.ssh/config
### for git
Host github.com
User 깃허브아이디
IdentityFile /경로/키이름
+
맥의 경우에는 경로가 약간 달라진다
~
❯ cd ~/.ssh
~/.ssh
❯ pwd
/Users/내이름/.ssh
키 생성등은 기존과 동일, 다만 키를 등록해줘야함
ssh-add -K ~/.ssh/키이름
'Linux-centos > Linux-centos__works' 카테고리의 다른 글
find min tail 같이 쓰기 (0) | 2019.12.19 |
---|---|
검색 - 삭제 (0) | 2019.11.04 |
server to server ssh (0) | 2019.10.17 |
서버 접속 화면에 ascii art banner 추가하기 (0) | 2019.10.17 |
centos 파일 이동시키기 (0) | 2019.09.25 |