自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (5)
  • 收藏
  • 关注

原创 git pull操作的时候提示fatal: Could not read from remote repository.的解决方法

fatal: Could not read from remote repository.Please make sure you have the correct access rightsand the repository exists.有时加上 -f 可以解决问题,不行再来一次,原因暂时不太理解。...

2019-12-30 19:04:30 617

原创 git pull时出现了 ! [rejected] master -> master (non-fast-forward)

有人是在push时出现 ! [rejected] ,我在pull时也碰到了,尝试pull --rebase也没有解决。解决方案:换一个没有.git信息的目录。

2019-12-30 17:32:37 3509

原创 error: failed to push some refs to 'git@github.com:

git push的时候出现如下提示:error: failed to push some refs to 'git@github.com:解读后面的提示。hint: Updates were rejected because the remote contains work that you dohint: not have locally. This is usually caused...

2019-12-28 22:26:08 137

原创 关于提示:You asked to pull from the remote 'xxx', but did not specify a branch.

借实验楼的github用一下!$git remote add xxx git@github.com:shiyanlou-001/shiyanlou-001.git$git pull xxx提示如下:You asked to pull from the remote 'xxx', but did not specifya branch. Because this is not the d...

2019-12-28 21:04:47 14050 2

原创 fork与pull的区别

fork是在GitHub仓库网站进行的操作,复制某人Github仓库内容到自己在GitHub上的仓库中,带有提交历史。另外将自己的修改(pull request)发给作者,由作者决定是否接受。这个修改可以由自己fork的Github仓库pull到本地电脑上来完成。pull是由Github仓库网站复制到本地电脑,带有提交历史。修改后不能向原作者出pull request。

2019-12-28 19:53:31 927

原创 git clone与pull的区别

git clone过来没有分支版本记录,git branch会提示没有任务分支,也不能进行git reset、git log等操作。git pull过来的带有分支版本记录,可以git reset和git log等操作。一句话,clone过来不带历史,pull过来带历史。...

2019-12-28 19:30:33 875 3

原创 解析git reset的三种模式

敲入git reset 相当于敲入git reset --mixed HEAD。除了mixed,还有hard soft,总共三种模式。hard模式使得三个区域一致。mixed模式作用到后两个区域,staged snapshot和commit history。soft模式仅仅作用于最后一个区域,commit history。举个例子如果三个区域已经一致了,下面三种模式效果一样。$...

2019-12-28 12:56:50 675

原创 git FAQ:Not a valid object name: 'master'.

创建分支。$git branch ex1报错。fatal: Not a valid object name: 'master'.原因:没有master分支。解决方案:创建一个文件,并添加提交。$touch 1$git add 1$git commit -m '1'查看,master出现了。$git branch*master此时创建分支,不会报错了。...

2019-12-27 17:48:44 148

原创 pcl::console::parse_argument用法

pcl程序中经常用到程序后面带选项,选项解析使用pcl::console::parse_argument()来完成,上代码。example.cpp#include <pcl/console/parse.h>using namespace std;using namespace pcl::console;intmain (int argc, char** argv){ ...

2019-12-09 12:19:37 3039

PCL项目属性表.zip

在属性管理器中导入,debug结尾导入到debug中,release结尾的导入到release中

2021-10-15

matlab_codes.zip

蝗虫算法( Grasshopper Optimization Algorithm,GOA ) 是一种元启发式仿生优化算法,具有较高的搜索效率和较快的收敛速度,且算法本身特殊的自适应机制能够很好地平衡全局和局部搜索过程,具有较好的寻优精度。

2021-07-08

PLC仿真软件

plcsim1.0.1.rar PLC仿真软件,老了点,但很不错

2012-05-05

The Essential Guide to 3D in Flash.pdf+ 源代码

away3d是一种常用的flash3d引擎,用于开发flash3d程序,这里是away3d3.6官方教材, 有源代码 2010出版的.

2012-01-19

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除