github
Github readme 기본 내용
star빛
2021. 4. 17. 23:43
…or create a new repository on the command line
echo "# Study" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/EOMMINJUNG/Study.git
git push -u origin main
…or push an existing repository from the command line
git remote add origin https://github.com/EOMMINJUNG/Study.git
git branch -M main
git push -u origin main
[GITHUB 사용법] 왕초보를 위한 깃허브사용법 (Git사용법)
코딩할 때 뺄래야 뺄 수 없는 서비스 중 하나가 GitHub (깃허브) 입니다. 현역 프로그래머에게는 너무나 친숙한 서비스지만, 코딩 초보자에게는 생소할 수도 있습니다. 그래서 이번에는 코딩 초
tagilog.tistory.com