[Eclipse]Author/Committer

김우경·2022년 1월 18일
0

eclipse

목록 보기
1/1
post-thumbnail

Author : 처음에 코드를 짜고 커밋한사람
Commiter : 가장 최근에 commit을 수정한 사람

즉, 여러사람이 프로젝트를 하면 Author는 기능별로 코드를 짠 개발자
committer는 commit를 보고 관리하는 관리자가 될 수 있습니다.

git config = git에 관한 설정
크게 두 가지 설정파일 Global, Local 입니다.

Global
git config --global user.email "you@example.com",
git config --global user.name "Your Name"
Local
git config --local user.email "you@example.com",
git config --local user.name "Your Name"

현재 설정된 Git 설정 확인하기

git config --list
git config -l

git config --system --list : System 설정 확인
git config --global --list : Global 설정 확인
git config --local --list : Local 설정 확인
git config --list : 모든 설정 확인

0개의 댓글