标签:github
下载git的官网地址
我下载的最新版是:Git-1.9.5-preview20150319.exe
不区分windows的版本,我的电脑是xp,也可以安装,全部用默认值即可。
在 开始-所有程序 里打开Git Bash。
注意,用cmd运行git命令会报错:
‘git‘ 不是内部或外部命令,也不是可运行的程序或批处理文件。
解决办法:Windows下配置Git
git init
运行后所在目录会多了一个隐藏文件夹.git。
git checkout --orphan gh-pages
运行后,.git里的HEAD文件会写入。
git add .
git commit -m "first post"
运行后,在https://github.com/ouyida3里点击Repositories,然后点击NEW,然后创建一个名为jekyll_demo库。
否则会报错:remote: Repository not found.
fatal: repository ‘https://github.com/ouyida3/jekyll_demo.git/’ not found
git remote add origin https://github.com/ouyida3/jekyll_demo.git
git push origin gh-pages
push是需要输入用户名密码的。
如果修改了某文件,则需要:
git add _posts/2015-04-08-hello-world.html
git commit -m "update"
git push origin gh-pages
不add的话会报错:changes not staged for commit
如果不add和commit就push,会提示:Everything up-to-date
注意,如果git commit没有-m,会提示,:q退出重来即可。
构建失败会push后立即发一封邮件到你邮件:
The page build failed with the following error:
The fileindex.html
is not properly UTF-8 encoded. For more information, see https://help.github.com/articles/page-build-failed-file-is-not-properly-utf8-encoded.
ouyida3的csdn博客
2015.4.8
标签:github
原文地址:http://blog.csdn.net/ouyida3/article/details/44947745