git push
-
Git Bash로 commit 이랑 push 하기git hub 2022. 4. 26. 14:07
어제 설치 해 둔 git bash를 실행 시켜 준다. 실행하기 전에 내 git repository에 연동해야하기 떄문에 git repository가 경로로 가서 프로젝트 마우스 우클릭하여 Git Bash Here을 선택해서 경로를 push 되어 질 경로를 설정 해 준다. 그러면 Git Bash 창이 뜰 때 요렇게 경로가 지정 된 것을 확인 할 수 있다. 그런 다음 user name이랑 user email을 등록 해 준다. git config --global user.name "유저이름" git config --global user.email "git 가입 메일" 해당 명령어로 입력 해 주고 입력이 제대로 되었는지 확인 해 보려면 git config user.name git config user.email..