
git/github
文章平均质量分 76
LaBa_Rice
这个作者很懒,什么都没留下…
展开
-
git与github使用
git是本地的创库github网络上提供git创库的一项服务可以说github上的开源软件代码全部是由git进行管理。分割线-------------在github上也可以进行可视化的操作一、github的使用,安装git本地软件链接github与git使用SSH公开密钥链接:git没有修改ssh密码的功能,只有覆盖重新设置创建SSH keyssh-keygen -t rsa...原创 2019-02-19 16:16:38 · 172 阅读 · 1 评论 -
git的常用命令等了解
https://cdn.liaoxuefeng.com/cdn/files/attachments/001384907702917346729e9afbf4127b6dfbae9207af016000/0文件创建后先工作区使用git add *** 文件会添加到到暂存区使用git commit 将暂存区文件一起提交至master(仓库分支,便于提交至远程仓库)git...原创 2019-02-19 16:15:38 · 179 阅读 · 0 评论 -
git 的分支操作
git checkout -b branchname 新建分支git checkout branchname :切换分支在master时使用git merge -n name :合并分支name,n: do not show a diffstat at the end of the mergegit log --graph 以图的方式查看信息解决两个分支(br...原创 2019-02-19 16:14:37 · 151 阅读 · 0 评论