GitHub2 [Git] git clone 특정 브랜치 git 특정 브랜치 clone 하기 리포지토리를 클론한 다음 모든 브랜치들을 가져온다(fetch). 그리고나서 특정한 브랜치로 전환(checkout)한다. git clone --branch 또는 git clone -b 참고 : https://www.freecodecamp.org/korean/news/git-clone-branch-how-to-clone-a-specific-branch/ 2023. 11. 1. [Git] git 원격저장소 연결하기 ✅ github에 원격 저장소 생성하기 ✅ 셋업 방법echo "# market-bapp-private" >> README.mdgit initgit add README.mdgit commit -m "first commit"git branch -M maingit remote add origin https://github.com/seowlee/market-bapp-private.gitgit push -u origin main혹은git remote add origin https://github.com/seowlee/market-bapp-private.gitgit branch -M maingit push -u origin main ✅ 로컬 저장소 파일들 원격저장소에 올리기 상세 설명로컬 저장소에 원격저장소 등.. 2022. 8. 18. 이전 1 다음