Git-GitHub 기본용어 main: 깃의 기본 브랜치(예전에는 master) -> local, remote HEAD: 현재 작업 브랜치의 위치 origin: 깃의 기본 원격 브랜치 별명 clone: git의 처음 파일들을 local pc에 복제하는 명령어 pull: git의 remote 위치에 있는 가장 최신의 commit 및 push한 내용들을 가져오는 명령어 Git의 설정 명령 git config [설정키] [설정값] 현재 해당 깃 저장소의 설정 -> ex) git config user.name teacher git config user.email teacher@naver.com 모든 깃 저장소에 해당하는 설정 git config --global user.name teacher git config..