상세 컨텐츠

본문 제목

Git 명령어

Tools

by 뉴에이스 2019. 9. 23. 11:10

본문

설치

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 stash apply

 

■ 실행취소

git reset HEAD^

 

저장소 생성시

■ 새로운 저장소 초기화하기 (해당디렉토리)

git init
git add *.*
git commit -m "commit message"
git branch -M main
git remote add origin https://github.com/계정/저장소명
git push -u origin main

 

저장소 복제시

■ 저장소 클론(새디렉토리)

git clone https://github.com/계정/저장소명

 

브랜치명 변경시

■ 브랜치명 변경시 (해당디렉토리) 

git branch -m Old_branch_name New_branch_name
git push origin :Old_branch_name

 

브랜치명 삭제시

■ 브랜치명 삭제시 (해당디렉토리) 

git branch -d branch_name
git push origin :branch_name

원격 브랜치 삭제시
git push origin --delete branch_name

 

관련글 더보기

댓글 영역