1. 설정과 초기화


git config --global user.name "Your name"
git config --global user.email "Your email address"
git config user.name "Your name"
git config user.email "Your email address"
git config --global --list
git config --list
git config --global color.ui auto
git config --global color.branch auto
git config --global color.status auto
git init
git clone <저장소 url>
git remote add <원격 저장소> <저장소 url>

2. 기본적인 사용법