git clone https://github.com/SsunLee/ssunlee.github.io
git remote add github https://github.com/SsunLee/ssunlee.github.io
remote : 원격 저장소와 연결하겠다.
add : 원격 저장소를 추가 하겠다.
origin : 원격 저장소의 origin이라는위치에 저장하겠다.
git rm --cached -r unnessesary
git rm --cached -r unnessesary.xlsx
git init
내가 로컬에서 이 폴더를 git으로 사용하고자할 때 init 합니다.
git add text.cs
git add --all
git commit -m "불필요한 폴더 및 파일 삭제"
-m 명령어는 commit message
git push -u origin main