터미널을 이용하여 데이터를 전송 하려 할 때 내 로컬 컴퓨터를 GitHub 서버에 연결하려면

Untitled

복사 하여서

git remote add origin : 여기에 GitHub 주소 붙여넣기

git remote add origin https://github.com/HaSenugJin/Html-Lec-Study.git

2. GitHub에 README.md 추가하기

Screenshot_1.png

<aside> 💡 README : Git데이터의 설명서

파일명 : README.md

</aside>

Untitled

Untitled

git config global 기존 유저정보 제거 하고 자기꺼 넣는거

// System(내PC기준)에서 사용할 전역 User Name 등록
// git config --global user.name <name>
git config --global user.name "HaSenugJin"

// System(내PC기준)에서 사용할 전역 User Email 등록
// git config --global user.email <email>
git config --global user.email "[email protected]"