본문 바로가기

기타 프로그램

현업에서 git 사용되는 명령어 모음

git push 

git add .

 

git commit -m "수정블라블라"​
git push -u origin (main or branch) <--이름

 

 

git stash

git stash

원격 저장소로 저장.

git stash pop

저장한 값을 가져오기

 

 

git merge

git fetch

사용하면 마지막 pull 이후 원격 저장소 또는 브랜치에 적용된 변경 사항을 확인

git diff...origin

변경사항 비교

git pull origin main

가지고 오고 싶은 곳에서 소스 당겨오기 ( 보통 자동 병합됨 )

 

 

git branch

git branch cording

cording 이라는 브랜치 이름으로 생성

git branch cording master

master 에서 cording 이라는 branch생성

git branch -D (브랜치이름)

branch 삭제

 

git checkout (브랜치이름)

이동하기 (이동하고 싶은 브랜치 이름을 작성해준다)

 

 

git stash -> git fetch -> git pull  -> git diff

 

반응형