git config 설정과 사용예제

  • 문서번호: 20210109_2121
  • 검색어: nabiro, git, config, 설정, 예제, 사용예제, 환경, 환경설정
  • 참조 또는 출처:
  • 마지막 업데이트: 

git config

git 프로젝트 환경에 대한 설정은 git config 명령어를 사용합니다. 

routeros
# 개별 프로젝트에 제한적으로 영향은 git config # 컴퓨터의 모든 프로젝트에 대한 영향은 git config --global # 컴퓨터의 모든 git 프로젝트에 사용할 사용자 이름과 이메일 설정 git config --global user.name "cheolsoo.kim" git config --global user.email "nabiro@gmail.com" # 현재 프로젝트 (저장소)에만 사용할 사용자 이름과 이메일 설정 # - 이 프로젝트만 이름은 cskim, 이메일은 cskim@wiztag.com 사용하고자 할 때 git config user.name "cskim" git config user.email "cskim@wiztag.com"

~/.gitconfig 

git config --global user.name "cheolsoo.kim" 명령어 실행하면 영향을 받는 파일은 

 

git config user.name "cskim" 명령어 실행하면 영향을 받는 파일은 현재 프로젝트 디렉터리 아래의 .git/config 파일

 

git config 예제 몇가지

routeros
# 컴퓨터의 모든 git 프로젝트의 이름 및 이메일 정보 git config --global user.name "cheolsoo.kim" git config --global user.email "nabiro@gmail.com" # 현재 디렉터리의 git 저장소에 대한 사용자 이름 및 이메일 정보 git config user.name "cskim" git config user.email "cskim@wiztag.com" # 설정된 사용자 정보 삭제 git config --unset user.name # 사용자 정보 확인 git config user.name # global 사용자 정보 확인 git config --global user.name # git config global 정보 확인 git config --global --list

댓글

Designed by JB FACTORY