- git config --global user.name ""
- git config --global user.email ""
-
git 으로 관리하고자 하는 폴더에서 터미널을 열고
git init입력 후 엔터 -
해당 폴더에서 숨김파일 모두보기를 누르고 봤을 때
.git폴더가 생성됐다면 성공- git remote(원격저장소) add origin(origin으로 추가) https://github.com/(username)/(저장소이름).git
- git push origin master (올리기)
- git pull origin master (받기)
- git clone (원격저장소주소 https:// ~ .git)
- git remote set-url origin (https://github.com/깃허브아이디/저장소이름.git)