본문 바로가기

git

깃허브 올리는 방법

반응형
git init

git remote add origin 원격 저장소 URL   -> 저장소 리셋  git remote remove origin

git add . <파일 경로>     -> 파일경로 안쓰면 전체파일  <~~.html>

git commit -m "커밋 메시지". 

git push origin <브랜치 이름>   -> 혹은 git push origin main

 

반응형