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 |
Tags
- ubuntu
- 맛집
- port
- 다이어트
- PER
- mssql
- MS-SQL
- MySQL
- 라즈베리파이
- ASP
- 날짜
- flutter
- Excel
- 유니티
- pandas
- Unity
- sqlite
- IOS
- node.js
- 함수
- 리눅스
- tensorflow
- urllib
- Linux
- python
- PyQt5
- GIT
- PyQt
- javascript
- swift
Archives
아미(아름다운미소)
Git : config 명령어 정리 본문
config
깃 저장소의 설정을 조회/관리하는 명령어. --global
옵션이 없으면 저장소별 설정을 의미합니다.
작업자의 이름/이메일 설정
git config --global user.name "이름"
git config --global user.email "이메일"
기본 편집기 설정
git config --global core.editor 편집기
Diff 도구 설정
git config --global merge.tool vimdiff
설정 확인
git config --list
git config -l
git config --global --list
git config core.editor
단축어(alias) 만들기
git config --global alias.사용할키워드 '명령어'
git config --global alias.unstage 'reset HEAD --'
git config --global alias.visual '!gitk'
git config --global alias.ss 'status'
단축어 목록 보기
git config --get-regexp alias
git config --list | grep alias
단축어 삭제
git config --global --unset alias.ss
SSL 검증 비활성화
git config --global http.sslVerify false
'랭귀지 > Git' 카테고리의 다른 글
Git : log 명령어 정리 (0) | 2018.08.06 |
---|---|
Git : diff 명령어 정리 (0) | 2018.08.05 |
Git : clone 명령어 정리 (0) | 2018.08.03 |
Git: blame 명령어 정리 (0) | 2018.08.02 |
Git : tag 명령어 정리 (0) | 2018.08.01 |
Comments