$ git init
$ git remote add orign 깃허브주소
$ git branch -M main
$ git status
현재 브랜치 main
아직 커밋이 없습니다
추적하지 않는 파일: ~~
$ git add .gitignore
$ git config --global core.autocrlf input
" warning: in the working copy of '파일명',
CRLF will be replaced by LF the next time Git touches it "
같은 문구가 출력되는 것을 방지
$ git add .
$ git commit -m "커밋메세지"
$ git push origin main
오브젝트 나열하는 중: 7, 완료.
오브젝트 개수 세는 중: 100% (7/7), 완료.
Delta compression using up to 10 threads
오브젝트 압축하는 중: 100% (7/7), 완료.
오브젝트 쓰는 중: 100% (7/7), 1.78 KiB | 1.78 MiB/s, 완료.
Total 7 (delta 0), reused 0 (delta 0), pack-reused 0
To 원격 레포지토리 주소
- [new branch] main -> main
와 같은 문구가 나오면, Github에 업로드 성공