GitHub에 프로젝트 올리기

nona·2021년 5월 21일
0

GitHub

목록 보기
5/5

GitHub 빈 Repository 생성 후 표시되는 내용입니다.
자주 잊어서 복사 해 둡니다.

2020년 5월 기준

  • create a new repository on the command line
echo "# test" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/[계정]/[Repo].git
git push -u origin main
  • push an existing repository from the command line
git remote add origin https://github.com/[계정]/[Repo].git
git branch -M main
git push -u origin main
profile
개발 놀이 중

0개의 댓글