1) Git 설치
맥
brew가 없다면
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew 설치 후(있으면 바로)
brew install git
2) Git 초기 설정
따라서 설정을 1번 해주면 편함
git config --global user.name "kyle"
git config --global user.email zzsza@naver.com
만약 프로젝트마다 다른 email을 사용하고 싶으면 --global
인자를 제거하면 됨
git config --list
로 설정을 확인할 수 있음 ssh-keygen
이제 ~/.ssh/id_rsa.pub
키가 생김
아래 명령어로 나오는 공개키를 복사
cat ~/.ssh/id_rsa.pub
clone
원격 저장소에 있는 파일을 내 로컬로 이동시킨다
git clone https://github.com/zzsza/kyle-school.git
kyleschool
branch 만들어서 pushstaging area : 곧 commit 할 것으로 예상되는 공간
_config.yml
, _data
, _featured_categories
, _featured_tags
, about.md
내용 수정favicon.ico
, tile-wide.png
, tile.png
원하는 이미지로 설정