본문 바로가기
Project/에어비앤비 (with Django)

[GitHub] Github Repository 생성 및 명령어

by 발담그는블로그 2020. 12. 30.

1. Github에 들어가 신규 Repository 생성

2. 생성된 Repository 주소 복사 

github.com/zihyun321/airbnb-clone

3. 생성하고자 하는 디렉토리 터미널에 다음과 같이 입력

# git 저장소 생성
git init

# git 나의 원격 저장소 저장
git remote add origin https://github.com/zihyun321/airbnb-clone

# 현재 상태 확인
git status

# git에 올릴 파일 추가 및 커밋
git add *
git commit -m "설명"

* Readme: 해당 Registory를 설명하는 파일

* .gitignore: 파일 생성시, github에 올리지 않았으면 하는 파일들. 
(github.com/github/gitignore/blob/master/Python.gitignore 에서 복사 붙여넣기)

 

 

반응형