Part 5 - Pushing to Github > Git

Git

Part 5 - Pushing to Github 정보

Part 5 - Pushing to Github

본문

github.com 에 가입하시고..

 

우측상단의 +를 눌러서 New Repository를 클릭하고.

 

Name/Description/Public or Private를 설정한후에

 

create repository를 누르시면 됩니다.

 

…or create a new repository on the command line

echo "# GitingStarted" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/[깃헙네임]/GitingStarted.git
git push -u origin master

…or push an existing repository from the command line

git remote add origin https://github.com/[깃헙네임]/GitingStarted.git
git push -u origin master

 

 

추천
0
  • 복사

댓글 0개

© SIRSOFT
현재 페이지 제일 처음으로