fork : 상대방 remote repository에서 내 remote repository로 복사하는것
clone : 내 remote repository에서 내 local repository로 복사하는것 (fork한 초기버전으로)
push : 내 local repository에서 내 remote repository로 복사하는것
ssh로 github연결하기
1. ssh-keygen으로 키페어(공개키,비밀키) 생성
2. cat ~/.ssh/id_rsa.pub으로 공개키 복사
3. github 웹 세팅 설정
Git 명령어
git restore [파일명] : clone했을때의 초기상태로 되돌린다.
git add . : 모든파일 버전 관리 시작
git commit -m "버전 기록 메시지" : log에 commit기록을 메세지로 남김
git push origin master : master 브랜치를 remote에 업로드 시킴
git init : 내 local repository를 git repository로 설정함
git remote add pair "주소" : 상대방 repository에 연결함
git pull pair master : 상대방 repository에 있는 master 브랜치를 가져와 현재 내 것과 병합함 (누군가업데이트한 버전)
'개발 학습' 카테고리의 다른 글
S1: 재귀함수 / 자료구조 / push, unshift, pop, shift (0) | 2021.09.23 |
---|---|
S1: obj[키값] / 스프레드 / deep복사 (0) | 2021.09.10 |
S1: 엘리먼트(El)과 DOM (0) | 2021.09.08 |
S1: Ubuntu 패키지 매니저 apt / node.js버전관리용 nvm / npm (0) | 2021.09.03 |
S1: css적용방식과 block의 종류 (0) | 2021.08.31 |
댓글