github

为什么github会如此的受欢迎

开源文化 结束了重造轮子的时代
1、new responsity
2、点击create responsity到达项目详情页
3、点击create new file
正确的下载github客户端:用IE浏览器打开 https://desktop.github.com/
revert 撤销添加的内容

关于分支:

master主要是作为产品在线上跑的
其他的分支都是作为测试用的

合并分支:

切换到默认分支 点击 sync
gitHub上访问网站
https://wenjuanzhao.github.io/tata/indeww.html
新建一个gh-pages的分支 然后新建自己的主页index.html

git命令的使用

f盘中software中
1、生成公钥 ssh-keygen 在c盘中的user中的user .ssh文件夹中 i.pub文件夹中的
2、检测公钥是否成功 ssh -T [email protected]
git clone 克隆到本地
git pull 将远程的版本和本地的版本合并
超级蛋卷 :[email protected]:SuperDanJuan/BBBBB.git
做了修改以后
1、git git add -A
2、git commit -m “qwwi”
3、$ git push origin master

你可能感兴趣的:(github)