github使用手册
Posted BY73
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github使用手册相关的知识,希望对你有一定的参考价值。
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
以上是关于github使用手册的主要内容,如果未能解决你的问题,请参考以下文章