[Git, Github] Git 초기설정

Medium_ryan ㅣ 2023. 5. 29. 16:23

git config --global user.name "Ryan"
// 사용자 이름 등록
git config --global user.email "userEmail@gmail.com"
// 사용자 이메일 등록
git config --list
// 등록된 이름, 이메일 확인
git init
// 깃 저장소 초기화
git add .
// 파일 스테이징 ( . <= 모든파일 )
git commit -m "[Update] This is message"
// 스테이징한 파일 커밋