이거 지금 하지 마시고 하던거 머지 다 하시면ㄱ

새폴더 만든 후 그 안에서 진행

flow 용 저장소 만들기

git flow init

프롬프트 뜨는 거 다 엔터 쳐서 기본값만 쓰기

git remote add origin <https://lab.ssafy.com/s07-blockchain-contract-sub2/S07P22B106.git>
git pull origin develop --allow-unrelated-histories

현재 브랜치 develop 인거 확인 git status

현재 브랜치를 origin develop 과 연결

git push -u origin develop

풀 되는지 해보기 git pull

새 브랜치 파기

git flow feature start FEAT_NAME

리모트에 해당 브랜치 만들기

git flow feature publish

add 는 하던 대로 하면 됨

commit 은 하던 대로 git-cz 쓰면 됨

push, pull 도 하던 대로 하면 됨

merge 하고 싶을 때