git 코드 처음 업로드 git init git init 명령어를 실행하면, 현재 디렉토리를 기준으로 Git 저장소가 생성됩니다. git add . git status git commit -m "커밋이름" git commit -m "first commit" git remote add origin https://github.com/... remote (원격) git remote -v -v 확인 git push origin 브렌치이름
git 코드 처음 업로드
git init
git add .
git status
git commit -m "커밋이름"
git commit -m "first commit"
git remote add origin https://github.com/...
git remote -v
git push origin 브렌치이름