Recent Posts
Recent Comments
목록.gitconfig 위치 (1)
HEROJOON 블로그(히로블)
[Git] git config --global 설정 (유저 Name, Email 설정)
목표 git config --global 설정을 알아보자. 사용할 명령어 정리 // git config --global 유저정보 등록 git config --global user.name // git config --global 유저정보 제거 git config --unset --global user.name // git config --global 등록정보 확인 git config --global --list 언제 쓸까요 내 System(PC)에서 Git 저장소를 사용할 경우 Commit User정보를 Custom하게 전역 설정하여 사용할 수 있습니다. 써보자 // System(내PC기준)에서 사용할 전역 User Name 등록 // git config --global user.name git conf..
Git
2020. 11. 2. 00:43