[TIL] 23.03.15 github

dalCoding·2023년 3월 15일
1

Techit 블록체인 스쿨 3기 Today I Learned D+3

경제 관련 영화 추천
-빅쇼트
-투빅투페일
-마진콜
-라스트홈

html, css, js 기초 학습

//css 파일 적용하기
<link rel="stylesheet" href="style.css">
//js 파일 적용하기
<script src="main.js"></script>

git hub 설치, 연결

설치
https://git-scm.com/

window : 64-bit Git for Windows Setup. 설치

git hub 연결

git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin 깃허브 주소
git remote -v
git push -u origin main

0개의 댓글