- 정적 블로그 작성 (github.io & hexo)
- .gitignore
- branch 생성 & merge
- gitflow
npm install -g hexo-cli
hexo init BLOG_NAME
npm install
hexo new post "MY FIRST POST"
hexo server
vi _config.yml //102번 라인, Deploy 항목으로 이동
type: 'git'
repo: MYNAME.github.io URL
npm install hexo-deployer-git --save
hexo clean && hexo deploy
npm install hexo-theme-next
vi _config.yml //100번 라인, theme을 next로 수정
hexo clean && hexo deploy //적용 시간이 필요하니 조금 기다릴 것
git branch hello
브랜치 생성 시
fatal: not a valid object name: 'master'
다음과 같은 오류 메시지가 출력 된다면 최초 1회의 커밋을 진행해야 한다. git init으로 프로젝트를 시작했기 때문에 README.md를 생성 후 커밋함으로써 해결하였다. git branch 명령 시 아무것도 보이지 않다가 최초 커밋을 진행한 후에야 * master가 보였다.
git switch hello //git구버전은 switch 대신 checkout
touch example.md
git add example.md
git commit
git switch master
git merge hello
git branch -d hello
git flow init
git flow feature start HELLO
//기능 개발
git flow feature finish HELLO //develop에 자동 merge된다.
git flow release start v0.0.1 //버전은 보통 3자리로 표기한다.
git flow release finish v0.0.1
git이 어떤 파일이나 폴더 등을 추적하지 않도록 명시하기 위해 작성한다. 해당 문서에 작성된 리스트는 수정사항이 발생해도 git이 무시한다. gitignore.io 참고.
반드시 신경쓸 것. 가장 많이 사용하는 3가지는 아래와 같다.
브랜치는 분기점을 생성해 독립적으로 코드를 변경할 수 있도록 도와주는데, 브랜칭 모델 중 가장 많이 사용되는 것은 git-flow 전략이다.
주요 브랜치인 master와 develop은 항상 유지한다.
보조 브랜치는 필요 시 생성한다.
git config --list
git config --global user.name "NAME"
git config --global user.email "EMAIL@EMAIL.com"
git config --global core.editor "vim"
git config --global core.pager "cat"
git clone URL
git status
git add FILE
git commit
git push origin main
git init
git remote -v
git remote add origin URL
git remote remove mask
git branch
git branch -M main //브랜치가 master일 경우
git switch BRANCH //구버전은 switch > checkout
git merge BRANCH //main에서 진행
git branch -D BRANCH
git flow init
git flow feature start NAME //종료 시 finish
git flow release start VERSION //종료 시 finish
npm install hexo-cli
hexo init ghblog
npm install
hexo new post "POST NAME"
hexo server
npm install hexo-deployer-git --save
hexo clean && hexo deploy