Git 명령어
설치 https://git-scm.com/download/win 공통 ■ 전역 사용자명/이메일 구성 git config --global user.name "사용자명" git config --global user.email "이메일" ■ 저장소별 사용자명/이메일 구성 (해당디렉토리) git config user.name “사용자명” git config user.email “이메일” ■ 전역 설정 정보 조회 git config --global --list ■ 저장소별 설정 정보 조회 git config --list ■ Git의 출력결과 색상 활성화하기 git config --global color.ui “auto” ■ 현재 파일들의 상태 보기 git status ■ stash 에 보관한 파일 꺼내기 git ..
Tools
2019. 9. 23. 11:10