코딩/환경설정

Git 연동하기

멩주 2022. 8. 26. 01:59

올릴 프로젝트 우클릭 -> git bash

$ git config --global user.name "{아이디}"

$ git config --global user.email "{이메일}"

$ git init

$ git add .

$ git commit -m "{commit 내용}"

$ git remote add origin {git 주소}

$ git push -u origin master