Github 연동 되어있지 않은 폴더 연동

새로운 repository와 현재 폴더 연결

다음 영역 team_name, repo_name에 알맞는 값을 입력하여 연동을 진행합니다.

echo "# Sample" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/${team_name}/${repo_name}.git
git push -u origin main

 

  • share