Git 설정
2024. 3. 15. 19:57ㆍGit
mac일 경우
brew install git
git 사용자 이름과 이메일 설정
git config —global user.name "이름"
git config —global user.email "이메일"
이름과 이메일 확인
git config user.name
git config user.email
윈도우 사용자 & 맥 사용자는 줄바꿈 표시가 다른 문제가 있음. 이를 해결하기 위한 방법
//window
git config —global core.autocrlf true
//mac
git config —global core.autocrlf input
'Git' 카테고리의 다른 글
Git cli 명령어 모음 (0) | 2024.03.15 |
---|---|
Git과 fork를 사용해서 커밋하기 (0) | 2024.03.15 |