반응형
#현재 directory 의 모든 파일을 Staging Area 로 이동
git add .
# file 들의 tracking 상태 보기
git status
# Staging 의 파일들 commit 하기
git commit -m "messsage"
# 저장소에 commit 반영하기
git push
git push origin master
# 저장소에서 commit 가지고 오기
git pull
# remote origin의 development branch merge
git merge origin/development
# 한 줄로 그래프 형태로 commit 히스토리 보기
git log --oneline --graph
# remote에서 삭제된 brach를 local 에서도 깔끔하게 삭제
git fetch --prune
반응형
'개발 > Git' 카테고리의 다른 글
Git Remote origin already exists 에러해결 (0) | 2023.02.02 |
---|---|
GitHub와 프로젝트 연동하기 (0) | 2022.09.28 |
Mac에서 Git설치하기 (0) | 2022.09.25 |
[IDE] IntelliJ에서 Git branch 변경 방법 (0) | 2020.02.10 |