본문 바로가기
Git

[Git] 명령어 정리

by doongjun 2021. 7. 12.

repository 생성 후

git init
git add .
git commit -m "커밋 내용"
git remote add origin (Repository URL)
git push origin master

 

git clone

git clone (Repository URL)

 

branch

branch 생성

git branch (branch name)

branch 이동

git checkout (branch name)

branch 목록 탐색

#원격 브랜치 목록
git branch -r 

#로컬 원격 모든 브랜치 목록
git branch -a

branch 변경사항 적용

git checkout master

#master에서 branch 내용을 pull
git pull origin (branch name)

#merge된 내용을 master로 push
git push origin master

branch 삭제

git branch -D (branch name)

 

코드 stash

# stash(LIFO 구조) 영역에 코드를 잠시 저장
git stash

#마지막에 저장한 코드 불러오기
git stash pop

 

git commit 히스토리 조회

git log

 

파일들의 상태 확인

git status

 

이미 push된 file에 .gitignore 적용

git rm -r --cached .
git add .
git commit -m "Apply .gitignore"
git push

댓글