Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- grep
- tomcat
- lsof
- port
- profile
- Mac
- ssh
- plugin
- xargs
- Windows 10
- netsh
- Eclipse
- JavaScript
- 네트워크
- 단축키
- VirtualBox
- Windows
- Source
- import
- 줄바꿈 문자
- GIT
- web.xml
- IntelliJ
- maVen
- vscode
- Quartz
- bash
- resource
- find
- context
Archives
- Today
- Total
develog
[git] config, init 본문
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