Git - push & deploy in Netlify

심재원·2023년 11월 28일
1

push

시작하기

: git init

유저 이름 설정

: git config --global user.name "L"

이메일 등록

: git config --global user.email #####@gmail.com

파일 추가

: git add .

메세지 입력

: git commit -m "first commit"

보낼 곳 등록

: git remote add origin https://깃허브주소

보낼 곳으로 코드 전송

: git push origin master

Netlify에서 deploy

https://www.netlify.com/

0개의 댓글