Dev

오늘의 발견 0002. Monday, March 7th, 2022

WhataGreatTrip 2022. 3. 7. 23:34

코딩만 따라해도 웹페이지가 만들어지는 HTML, CSS, 자바스크립트 by 반병헌

 

P81

4-4. 새 프로젝트 시작하기

프로젝트와 깃허브 리포지토리 연동

 

git config --global user.name "Your Name"
git config --global user.email "you@example.com"

git init
git add .
git commit -m "first commit"
git remote add origin 복사한URL
git push origin master