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
반응형
'기타 프로그램' 카테고리의 다른 글
git 특정 파일만 push 하기 (0) | 2024.02.26 |
---|---|
브라우저 동작원리 정리 (0) | 2024.02.23 |
.gitignore가 작동하지 않을때는 어떻게해요? (1) | 2024.01.10 |
fatal: not a git repository (or any of the parent directories): .git [해결하기] (0) | 2023.12.20 |
fatal: not a git repository (or any of the parent directories): .git [해결하기] (0) | 2023.12.11 |