Hexoブログ

1605 ワード

1 GitHubに新しい倉庫を作成し、usernameという名前に注意してください.github.ioでいいです.
2 cloneローカル
 cd ~/Documents
 git clone https://github.com/username/username.github.io.git

3ブランチを作成しgitをコミットする
cd username.github.io/
git checkout -b hexo
touch .gitignore
git add .gitignore
git commit -m “add .gitignore“
git push origin hexo

4新しいterminal構成コンピュータ基礎管理環境
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"  (mac ruby brew  mac )
brew install git ( git  homebrew)
brew install node   brew upgrade node ( node.js ,node node npm , nvm node )
npm install -g hexo-cli ( hexo)

4 gitディレクトリに戻ってhexoフォルダを作成しhexo関連ファイルをインストール
mkdir hexo
cd hexo/
hexo init
npm install

5トピックの更新のインストール
cd ../ ( ls  hexo )
git submodule add https://github.com/litten/hexo-theme-yilia.git hexo/themes/yilia ( , git hexo themes )

6 gitサーバツールの導入、または他のプラットフォームの導入
npm install hexo-deployer-git --save

構成の変更_config.yml
deploy:
  type: git
  repo: https://github.com/username/username.github.io.git
  branch: master

7静的ページを生成しgitに配置するgenerateとdeployの略記
cd username.github.io/hexo/
npm install hexo-deployer-git --save
hexo g -d (  hexo generate --deploy)

注意deployのtypeはgit(3.0以前はgithub)だったがERROR Deployer not found: githubを間違えた場合はnpm install hexo-deployer-git --saveをもう一度実行してhexo generateまたはhexo g -dを実行します
質問があれば公式文書:公式中国語版を参照してください.