github 사용법

최중혁·2022년 1월 10일
0

github 명령어

주요 명령어

git init: git 저장소를 생성
git clone: git repository를 local로 clone
git add : 변경된 코드를 local branch로 add
git commit -m "message":
git push origin

생성
git checkout -b 브랜치명

제거
git branch -d 브랜치명
주의!! 현재 브랜치에서는 삭제가 되지않는다.

0개의 댓글