728x90
git config --list
해당 명령어를 콘솔에 치면 깃 로그인 정보를 확인할 수 있다.
유저 정보, 이메일 등을 확인할 수 있다.
git config --global user.name "이름"
git config --global user.email "이메일@주소.com"
유저를 변경하고 싶다면 위 명령어를 통해 변경한다.
728x90
'공부 > Git' 카테고리의 다른 글
[Git] GitHub Actions에 대하여 (0) | 2023.12.01 |
---|---|
[Git] 효율적인 업무를 위한 Workflow (Centralized Workflow, Feature-Branch Workflow, GitFlow, Forking Workflow) (1) | 2023.12.01 |
[Git] local repository와 remote repository 그리고 명령어들(fetch, pull, push, fork, pull request) (0) | 2023.12.01 |
[Git] git clone과 git remote add의 차이점 (0) | 2023.12.01 |