Git 원격 저장소(Remote Repository)의 데이터를 로컬 PC에 연동(Pull)하고 업로드(Push) 하는 방법입니다. 4단계로 끊어서 간단하게 설명드리겠습니다. 4단계 계정 설정 로컬 저장소 생성 원격 저장소 데이터 로컬 PC로 Pull (다운로드) 원격 저장소에 데이터 Push (업로드) 1. 계정 설정 계정 설정 필수 항목인 user.name과 user.email을 설정합니다. git config --global user.name "Your name" git config --global user.email "Your@git.email" 계정 설정 확인 하기 $ git config --global --list user.name=Your name user.email=Your@git.emai..