[Git] Github 저장소 생성, Push

nakkim·2021년 8월 18일
0
post-custom-banner
$ sudo apt install git
$ git --version

일단 위 명령어를 실행해서 git을 다운로드한다.

Github 저장소(Repository)에 파일을 올리는 방법 두 가지를 설명한다.
아래 방법 말고도 Github 홈페이지에서 드래그앤드롭 방식으로 업로드가 가능하다.

1. 로컬 디렉터리에 git 적용 후 remote 추가

1-1. git 적용

$ git init
$ git add .
$ git commit -m "어쩌구저쩌구"

1-2. remote 추가 후 push

$ git remote add origin https://github.com/<username>/<repo>.git
$ git branch -M main
$ git push -u origin main

2. Github 저장소 clone

2-1. clone

clone 시 저장소 이름으로 된 디렉터리가 생성됨 + .git 하위 디렉터리 생성

$ git clone https://github.com/<username>/<repo>.git

2-2. 수정 후 push

clone하면 보통 origin 리모트 저장소 자동 생성

$ git add .
$ git commit -m "어쩌고저쩌고"
$ git push -u origin main
profile
nakkim.hashnode.dev로 이사합니다
post-custom-banner

0개의 댓글