문서의 선택한 두 판 사이의 차이를 보여줍니다.
| 양쪽 이전 판이전 판다음 판 | 이전 판 | ||
| git:config [2022/10/23 15:34] – [pull And push] taekgu | git:config [2025/04/15 10:05] (현재) – 바깥 편집 127.0.0.1 | ||
|---|---|---|---|
| 줄 1: | 줄 1: | ||
| + | ====== git 설정 ====== | ||
| + | ===== 사용자 ===== | ||
| + | <code bash> | ||
| + | git config --global user.name "Maro Lim" | ||
| + | git config --global user.email maro@garamx.com | ||
| + | </ | ||
| + | ===== alias ===== | ||
| + | <code bash> | ||
| + | git config --global alias.co checkout | ||
| + | git config --global alias.av branch -avv | ||
| + | git config --global alias.st status | ||
| + | </ | ||
| + | ===== pull ===== | ||
| + | [[https:// | ||
| + | <code bash> | ||
| + | git config --global pull.rebase false | ||
| + | </ | ||
| + | |||
| + | ===== editor ===== | ||
| + | <code bash> | ||
| + | git config --global core.editor vim | ||
| + | </ | ||
| + | |||
| + | ===== checkout.defaultRemote ===== | ||
| + | 체크아웃을 위한 기본 remode설정 | ||
| + | git config --add checkout.defaultRemote origin | ||