회사에서 쓰고 있는 git 명령어
2022-06-21
- branch 생성
git checkout -b develop
- branch 확인
git branch
- 푸시
git push origin develop
- 코드 동기화
git pull upstream develop
- 브런치 삭제
git branch -d develop
2022-06-21
git checkout -b develop
git branch
git push origin develop
git pull upstream develop
git branch -d develop