git 정리(1)

catchv·2022년 8월 24일
0

git

목록 보기
1/3
post-thumbnail
  1. Git 사용자 정보 구성
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
  1. git 편집기 구성
$ git config --global core.editor emacs
$ git config --global core.editor "'C:/Program Files/Notepad++/notepad++.exe' -multiInst -nosession"
  1. 설정 확인
git config --list
git config user.name	# 유저 이름만 확인

0개의 댓글