git remote add origin "http"
// error: origin 리모트가 이미 있습니다.
git pull origin main
// fatal: protocol '“https' is not supported
""
콜론과 함께 적어서 발생// 재연결
git remote rm origin // 제거
git remote add origin http // http 주소에 콜론 x
git pull origin main // 반응 굳!
git add .
git commit -m "Add: 초기세팅 완료"
git push origin main -f