[Git] PULL, PUSH

Aiden·2024년 2월 17일
0

Git

목록 보기
5/13
post-thumbnail

사용목적

REPOSITORY를 동기화하기 위한 Git 문법입니다.

문법

REMOTE REPOSITORY -> LOCAL REPOSITORY (pull)

REMOTE REPOSITORY 의 작업 내용을 LOCAL REPOSITORY로 불러옵니다.

git pull <remote_repo_name> <branch_name>

보통 name은 origin, branch는 main을 기본적으로 사용합니다.

git pull orgin main # git pull만 입력해도 동기화 가능합니다.

LOCAL REPOSITORY -> REMOTE REPOSITORY (push)

LOCAL REPOSITORY 의 작업 내용을 REMOTE REPOSITORY로 불러옵니다.

git push <remote_repo_name> <branch_name>

보통 name은 origin, branch는 main을 기본적으로 사용합니다.

git push orgin main # git push만 입력해도 동기화 가능합니다.
profile
aiden

0개의 댓글