노마드 코더 - 초급/바닐라 JS로 그림판 만들기

터미널로 깃허브 프로젝트 설정

햅삐한 포메라리안 2022. 3. 2. 23:50
반응형

범위

#1.0 Project Setup


터미널로 깃허브 프로젝트 설정


https://github.com/new

 

GitHub: Where the world builds software

GitHub is where over 73 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat...

github.com

repository 만들어 주기

그 다음 터미널로 파일 복제할 곳 설정 후 비주얼 스튜디오 코드 열어주기

 

GitHub Desktop으로 열어도 됨

아니면 그냥 VSC 열어서 File - Open Recent - paintjs

파일 만들어 놓고 시작하기

타이틀 설정

파일들 연결해주기

git add .
git commit -m "Initial Commit"

터미널로 깃에 commit하기


깃에 push

 

git push origin main

터미널로 깃에 push해주기

반응형