1. 새 레포지토리 만들기
2. 로컬 폴더 위치에서 git bash를 열기
3. git init
4. git remote add origin 깃허브-레포지토리-주소
5. git branch -m master main
6. (레포지토리에 뭔가 있을 경우) git pull origin main
7. git add .
8. git commit -m "커밋-메시지"
9. git push origin main
10. (더이상 사용 안할 거라면) git remote remove origin
'IT > DevOps' 카테고리의 다른 글
[Docker] multi-container application: Docker compose (0) | 2024.02.07 |
---|---|
[Docker] Database 유지하기: 2. Bind mount (0) | 2024.02.07 |
[Docker] Container의 filesystem, Database 유지하기: 1. Volume mount (0) | 2024.02.06 |
[Docker] Application 공유하기: Docker registry, Docker Hub (0) | 2024.02.05 |
[Docker] Application 업데이트하기 (2) | 2024.02.05 |