Git Bash 초기 설정과 기본 사용법
먼저 Git Bash를 처음 설치했다면, 기본적인 사용자 정보를 설정해주어야 한다.
git config --global user.name "사용자 이름"
git config --global user.email "Github Email"
이 설정을 통해 Git은 당신의 커밋(commit)을 어떤 사용자의 것인지 알 수 있다.
설정을 완료했다면, 아래의 명령어로 확인이 가능하다.
git config --list
git init
git add .
git status
git commit -m "first commit"
git remote -v
git remote add origin https://github.com/songyuheon98/JavaStudy.git
git push origin master
git clone https://github.com/songyuheon98/JavaStudy.git "클론할 폴더"
git checkout -b freshman
git commit -m "second commit"
git pull origin master