develog

[git] config, init 본문

Dev/git

[git] config, init

냐옴 2020. 1. 9. 00:00

git config 사용자 정보 등록

## 전역 설정
## 파일위치: ~/.gitconfig
$ git config --global user.name 'aa'
$ git config --global user.email 'aa@bb.com'

## 프로젝트별 설정
## 파일위치: ./.git/config
$ git config --local user.name 'aa'
$ git config --local user.email 'aa@bb.com'
or
$ git config user.name 'aa'
$ git config user.email 'aa@bb.com'

git config 사용자 정보 삭제

# 글로벌 사용자 설정 삭제
$ git config --global --unset user.name
$ git config --global --unset user.email

# 로컬 사용자 설정 삭제
$ git config --unset user.name
$ git config --unset user.email

# 지워졌는지 확인
$ git config --global --list
$ git config --list

현재 프로젝트 git 사용자 확인

  • .git 디렉토리 있는 폴더에서 확인
$ git config user.name
$ git config user.email

$ git config --show-origin user.name
$ git config --show-origin user.email

git 저장소 생성

## 로컬 저장소 신규 생성
$ git init
$ git init local

## 리모트 저장소를 로컬로 복제
$ git clone https://github.com/git/exampleProj.git exampleProj

 

'Dev > git' 카테고리의 다른 글

[git] merge vs rebase  (0) 2021.03.31
[git] git branching model  (0) 2021.03.31
[git] .gitignore  (0) 2021.03.18
[git] git status untracked file not showing  (0) 2021.03.17
[git] rollback  (0) 2021.03.02
Comments