Git 협업을 위한 필수 명령어 가이드
1. 사용자 정보 설정
# 최초 설치 후 사용자 정보 등록
git config --global user.name "홍길동"
git config --global user.email "hong@example.com"
# 현재 설정 확인
git config --list
2. 저장소 초기화 및 복제
# 원격 저장소 가져오기
git clone https://github.com/example/team-project.git
# 특정 브랜치만 복제
git clone -b dev https:/ ...
6월 24일 16:37에 게시됨