
[Git] 주요 명령어 모음
·
카테고리 없음
기본 명령어 git init : git 생성 git clone git_path : 원격저장소에서 코드 가져오기 git add file_path : 수정한 코드 선택 (git add *) git commit -m "commit_message" : 선택한 코드 설명 적기 git push remote_name branch_name : commit한 코드 git server에 보내기 (git push origin master) git config-global user.name "user_name" : git 계정 이름 변경 git config-global user.email "user_email" : git 계정 이메일 변경 Branch 관리하기 (협업할 때) git branch branch_name : 브랜치..