git, github remote connect

껌뻑이·2021년 7월 22일
0

git

목록 보기
3/4
post-thumbnail

git, github remote connect

git-github 사용법 & github를 이용한 코드리뷰에서는 github에서 repository를 만들고 컴퓨터에 연결하는 방법을 소개했었다.
그러다보니 이미 컴퓨터에서 작업한 파일을 github에 올리고 싶을때는 어떻게 해야하나 싶었다.

다 방법이 있다.

연결

test폴더를 github에 올린다고 가정해보자.

cd test
# test로 이동

git init
# git 설치

git remote add origin [github repository address]

이 후 해당 github repository에 들어가보면 test폴더가 등록되어 있는 것을 볼 수 있다.

0개의 댓글