1. git 버전 확인 git --version 2. 웹 브라우저를 통해 해당 명령어 매뉴얼 페이지 표시 git clone --help # git [명령어] -help 3. 원격 저장소를 로컬 저장소로 복사하기 git clone https://github.com/t-shaped-person/test.git # git clone [원격 저장소 주소] 4. git 설정 확인, 등록 및 삭제 git config --list # 전체 설정 리스트 및 값 출력 git config [옵션] git config user.name # 사용자 이름 확인 git config [항목] git config --global user.name "t-shaped-person" # 사용자 이름 설정 등록 git config [범위]..