Git: 사용자와 이메일 정보 설정 및 확인하기
·
Computer/Linux
Git 사용자와 이메일 정보 확인하기[user.name](http://user.name>) 확인하기git config user.name [user.email](http://user.email>) 확인하기git config user.emailGlobal로 Git 사용자와 이메일 정보 설정하기현재 시스템의 모든 Git 작업에 사용할 사용자 이름(user.name)과 이메일(user.email)을 설정하고자 한다면, global옵션을 사용해 git config 명령어를 실행git config --global user.name "Your Name"git config --global user.email you@example.com 아니면, ~/.gitconfig 에 다음 내용을 추가해도 됨: cat ~/.gi..