标签:
1、git init
2、git add README.md
(增加文件夹/文件:git add dir/files)
3、git commit -m "注释内容”
4、git push -u origin master
add -> commit -> push
github只会将你的gh-pages分支部署上去,不会动你的其他分支的东西。所以,我们要将改动提交到gh-pages分支上,再push。
1、git branch
2、git commit -a -m "first commit”
3、it push origin gh-pages
标签:
原文地址:http://www.cnblogs.com/frontendBY/p/5509580.html