Repository/Github

[Github] Git 버전 확인 및 사용자 등록, 확인(Window 10)

Ma_Sand 2023. 5. 1. 15:23
반응형

Git 버전 확인

Git Bash 실행 후 다음 명령어 입력

$ git --version

 

 

 

Git 사용자 등록

$ git config --global user.name "유저명"
$ git config --global user.email "유저 이메일주소"

 

 

 

Git 사용자 확인

$ git config --list

 

 

반응형