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使用手册的主要内容,如果未能解决你的问题,请参考以下文章

GitHub使用手册4——查看多人协作项目

Github | PyTorch 中文手册

github使用手册之新建仓库

GitHub使用手册6——与远程仓库保持同步

Git版本控制软件结合GitHub从入门到精通常用命令学习手册

GitHub使用手册3——使用其他开发者的仓库