pbj0812의 코딩 일기

[git] github에 프로젝트 올리기 본문

빅데이터/git

[git] github에 프로젝트 올리기

pbj0812 2020. 7. 27. 00:00

0. 목표

 - github에 프로젝트 올리기

1. 실습

 1) 초기화

git init

 2) 저장소 연결

git remote add origin https://github.com/pbj0812/react_test.git
git add .

 3) 커밋

git commit -m "https://github.com/pbj0812/react_test.git"

 4) 업로드

git push origin master

 - 결과

2. 참고

 - ReactJS로 영화 웹 서비스 만들기

'빅데이터 > git' 카테고리의 다른 글

[git] sourcetree 로 git 사용하기  (0) 2022.03.27
[git] github에 커밋 올리기  (0) 2020.04.29
[git] git을 통한 파일 버전 관리  (0) 2020.04.28
Comments