깃&깃허브
깃 / 깃허브이란? 사용방법은?
코딩의 세계
2024. 7. 19. 19:07
https://youtu.be/lelVripbt2M?si=rO114iJ3vr_uhnh-
프로젝트를 위해서는 깃과 깃 허브는 필수이다. (개발을 위해서도 그냥 필수임)
https://hackmd.io/@oW_dDxdsRoSpl0M64Tfg2g/ByfwpNJ-K
Git 명령어 총정리집 (by 코딩알려주는 누나❤) - HackMD
# Git 명령어 총정리집 (by 코딩알려주는 누나❤)  안녕하세요 여러분 :)
hackmd.io
(코딩알려주는 누나 / git 명령어 총정리집 참고)
> 코드를 요약하자면..
// main Branches 으로 올릴 때.
git add .
git commit -m "하고 싶은 말 적기"
git push -u origin main
// master Branches 으로 올릴 때.
git add .
git commit -m "first commit"
git push origin master
// git 만들기 및 연동
> 이건 깃허브 레포스토리 커밋할 때 그대로하면 됨. (cd 본인 프로젝트 까먹지말기)
+
https://rogerdudler.github.io/git-guide/index.ko.html
git - 간편 안내서 - 어렵지 않아요!
rogerdudler.github.io