Git repository
- 내 컴퓨터 -> Local Git repository -> Remote Git repository

mkdir my-app touch index.htmllsGit repository를 생성 : git initGit repository와 연결staging area : git addgit status : staging area 확인staging area의 파일 => Local repository에 기록 git commit -mgit reset HEAD^ 커밋 확인 : git logLocal repository <=> Remote repository : `git remote add <name; 원격 리포지토리 주소를 대신할 이름> git remote -vLocal repository & Remote repository 연결 확인 : git remote -vLocal repository_commit => Remote repository_commet : `git push <remote_name> <branch_main>