사용자 도구

사이트 도구


git:config

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
git:config [2023/11/07 13:59] – [editor] taekgugit: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
 +</code>
  
 +===== alias =====
 +<code bash>
 +git config --global alias.co checkout
 +git config --global alias.av branch -avv
 +git config --global alias.st status
 +</code>
 +===== pull =====
 +[[https://velog.io/@yunu/git-pull-%ED%95%A0-%EB%95%8C-fatal-Need-to-specify-how-to-reconcile-divergent-branches.-%EC%98%A4%EB%A5%98|git pull 오류시 확인사항]]
 +<code bash>
 +git config --global pull.rebase false
 +</code>
 +
 +===== editor =====
 +<code bash>
 +git config --global core.editor vim
 +</code>
 +
 +===== checkout.defaultRemote =====
 +체크아웃을 위한 기본 remode설정
 +  git config --add checkout.defaultRemote origin