반응형
기본적인 사용법
git status: 변경된 사항 확인
git add . : all file staging
git commit -m "update message insert here"
git push origin master
git branch code 내려받기
git clone -b {branch_name} --single-branch {저장소 URL}
ex) git clone -b subBranch --single-branch https://github.com/어쩌구저쩌구
반응형