* git config 설정
#git config --global user.name "유저이름"
#git config --global user.email "유저이메일"
#git config --list
* 프로젝트 생성 후 기본적인 연동방법
1. 리포지토리 생성
2. 프로젝트 경로 이동
3. #git init
4. #git commit -m "first commit"
5. #git branch -M master
6. #git remote add origin https://github.url
7. #git push -u origin master
* git 연동 확인
#git remote -v
* 저장소의 git 소스 내려 받기
#git pull origin master
* git branch 생성
#git branch -M name
* git branch 삭제
#git branch -d name
* git branch 확인
#git branch
* git에 소스 올리기(push)
#git push origin 브랜치명
* git branch 전환
#git checkout -b 브랜치명