본문 바로가기
🐈‍⬛ git

[Git] 프로젝트를 시작할 때 Git 초기화하기

by 파크park 2020. 12. 7.

터미널 명령어 -> git init

 

github 이동 > git repository 생성

 

해당 URL 복사

 

git remote add origin `URL`

ex) git remote add origin github.com/healtheloper/movie_app_2020

 

git add .

git commit -m "title"

ex) git commit -m "#1.1 Creating a Github Repository"

 

git push origin master