Git 기초 명령어


Git 기초 명령어

사용자 정보 사용자 정보 입력 git config --global user.name "your name" git config --global user.email "[email protected]" 사용자 정보 확인 git config --global --list 폴더 경로 로컬 폴더 경로 초기화 cd gitTest git init 로컬경로 초기화 간단하게 하기 (해당 폴더 오른쪽 클릭 > Git Bash Here) 하면 됌 원격 폴더 경로 초기화 git remote add origin https://.... 현재 원격 폴더 경로 확인 git remote -v PULL git pull origin yourbranch PULL 순서 주의! add > commit > pull 수정 하고 있다가 ..


원문링크 : Git 기초 명령어