728x90
깃허브 프로젝트 생성 관련 명령어
github repository 생성 후 로컬 연결할 때
(1) git config --global user.email '아이디@이메일.com'
(2) git config --globar user.name '유저 이름'
(3) git init
(4) git remote add origin "repository 주소"
(5) 코드 업로드 준비 : git add .
(6) 코드를 repository에 올릴 때 쓸 메시지 : git commit -m '메시지'
(7) master branch에 코드 업로드 : git push origin master
(8) repository에서 로컬로 코드 복제할 때 : git clone "repository 주소"
(9) add된 파일 다시 unstaging: git reset HEAD 파일명 (전체 파일 unstage: git reset HEAD -- .)
(10) Staging Area 파일의 변경된 부분 확인: git diff --staged
(11) 강제 푸시: git push origin +master
반응형
LIST
'Legacy > [Legacy] Data' 카테고리의 다른 글
[업무기록] google appscript 활용한 구글 스프레드시트 자동화(이진 탐색 알고리즘) (0) | 2021.08.14 |
---|---|
깃허브 사용법(github 입문) (11) | 2019.05.31 |