본문 바로가기

DEV/Git

GitHub Repository 생성

1. https://github.com/ 로그인

Create repository 클릭

 

2. Repository 생성

Repository name에 프로젝트명 입력후 Create repository 클릭

 

 

3. git Remote

 - git remote add origin https://github.com/kbs8971/instaClone.git 콘솔에서 명령어 실행

 - git remote -v (추가한 원격저장소의 목록 확인)

 - git remote show origin (특정 원격 저장소의 정보를 확인)

 - git remote rm origin (origin 원격저장소를 제거)

세가지 방법으로 Remote Repository와 연결 가능

 

4. git push

 - git push -u origin master

 

계정/비번 입력

 

push할때 계정/비밀번호 실패할경우

 

비밀번호 재입력
push 성공
error인 경우 git pull origin master  --allow-unrelated-histories

 

'DEV > Git' 카테고리의 다른 글

GitHub Desktop 사용법  (0) 2020.09.07
Remote Repository 다른 사용자 초대 및 Clone  (0) 2020.08.31
Git 설치 및 Local Repository 생성  (0) 2020.08.23
Git 회원가입  (0) 2020.08.23
Git Spring프로젝트 import  (0) 2019.08.12