Git
-
[git] 기본 명령어 정리맨땅에코딩/git 2020. 6. 17. 21:05
git은 이전에 쉽게 사용하던 svn의 중앙관리형 소스관리와는 다르게 각 로컬저장소를 두고 branch를 통해 병렬적으로 소스관리를 할 수 있는 소스관리도구입니다. * git 계정정보 입력 git config --global user.name [username] git config --global user.email [user@email.mail] * 로컬 저장소 설정 git init : 현재 디렉토리를 로컬저장소로 지정 * 원격저장소 연결 git remote add origin [repository url] : 여기서 repository url은 github 홈페이지의 repository 탭에서 가져올 수 있다. * staging git add . * commit with message git comm..