iOS
터미널 GitHub 사용법 정리
지용빡
2022. 8. 3. 22:01
반응형
git init
git add .
git commit -m "commit message"
git remote add origin https://GitHub주소
git remote -v
git push --set-upstream origin master
git status // 확인
// branch 생성
git branch "생성할 브랜치 이름"
// branch 이동
git checkout "이동할 브랜치"
반응형