
Git
Mr.Q
纸上得来终觉浅,绝知此事要躬行。 ---陆游
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
批量将gitlab或者github代码导入到gitee
gitlab是乌克兰的,github是美国的,用下国内gitee备份。原创 2022-03-22 17:06:57 · 970 阅读 · 0 评论 -
windows同时配置github,gitlab和gitee
同时使用gitlab和github原创 2021-12-16 17:05:17 · 1309 阅读 · 0 评论 -
git 创建工程
最近项目的一个项目,要用C#调用pytorch模型,但是C#调用python3.0以上的接口不友好,所以考虑使用C#调用C++接口,即用tensortRT部署模型,提供C++接口。 步骤如下: (1)Pytorch模型转ONNX模型; (2)ONNX模型转tensorRT模型; (3) ...原创 2021-07-01 17:28:56 · 259 阅读 · 0 评论 -
fork mmdetection之后同步源的更新
zxq@zxq-desktop:~/PycharmProjects/mmdetection$ git remote -v origin [email protected]:Z-XQ/mmdetection.git (fetch) origin [email protected]:Z-XQ/mmdetection.git (push) zxq@zxq-desktop:~/PycharmProjects/mmdetection$ git remote add upstream [email protected]:op.原创 2020-09-27 22:59:11 · 232 阅读 · 0 评论 -
AttributeError: ‘COCO‘ object has no attribute ‘get_cat_ids‘
原因:mmdetection用到了pycocotools,本来接口是pycocotools.coco.getCatIds,但是mmdetection又在外包了一层,变成了get_cat_ids,导致pycocotools.coco又没有这个成员函数,导致出错。 解决办法: mmdetection官方建议将coco.py回退到以前版本 git checkout 206107 -- mmdet/datasets/coco.py ...原创 2020-07-07 14:35:46 · 2434 阅读 · 6 评论 -
上传代码到GitLab分支
一,从dev分支中创建小分支 master分支是用于上线的,是稳定版本,不能动,所以我们交流是在dev分支中进行,每个人再基于dev分支创建自己的小分支。下面基于dev分支,创建了DF12to16分支。 二, git clone dev分支 命令:git clone [email protected]:zhang_xx/xxadg.git 三,抓取dev分支中的DF12to1...原创 2019-11-14 10:54:33 · 3859 阅读 · 0 评论 -
Git和GitHub操作详细教程
参考: https://www.imooc.com/article/20411 https://blog.csdn.net/slwhy/article/details/78937985 跟着上面的教程,我在Unbuntu系统下,操作了一遍。在此基础上,做了更加详细的介绍。可以结合着看看。 目录 参考: https://www.imooc.com/article/20411 htt...转载 2019-08-02 16:05:19 · 1087 阅读 · 1 评论 -
GitLab使用教程
GitLab操作类似于GitHub:https://blog.csdn.net/jizhidexiaoming/article/details/98061609 一、本地仓库上传到远程仓库 1,本地mkdir tools 2,要上传的scripts复制到该目录下 3,然后初始化工作: 4, add到暂存区,再commit到本地仓库 5, 查看自己git的信息 6,配置秘钥...原创 2019-08-02 18:01:06 · 666 阅读 · 0 评论