ljina0218.log
로그인
ljina0218.log
로그인
로컬 저장소와 원격 저장소 연결(1:1)
이진아
·
2020년 3월 1일
팔로우
3
git
github
push origin master
remote add origin
로컬 저장소
원격 저장소
3
1. repository가 비어 있다면
1) remote add origin
git init
git remote add origin
https://github.com/ljina218/repoTest
(origin: remote repository 이름의 default 값)
2) commit
git add . : 작업 디렉토리에 있는 파일들을 stage area에 올림
git commit -m: stage area에 있는 파일들에 버전이 생성됨
3) push
push = fetch(차이가 있음을 확인) + merge
git push origin master: 원격저장소에 올리기
(origin: remote repo이름의 default값/ master: 브랜치 이름)
실행결과
2. repository에 파일들이 존재한다면
1) remote add origin
git init
git remote add origin
https://github.com/ljina218/repoTest
2) pull
pull = fetch + merge
pull origin master
실행 결과
이진아
팔로우
이전 포스트
git bash here
다음 포스트
오라클 sys계정
0개의 댓글
댓글 작성