上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 33 下一页
摘要: git remote add origin ssh://admin@127.0.0.1:29418/Prjs/prj1.git git push -u origin master 阅读全文
posted @ 2018-12-15 14:38 梦醒江南·Infinite 阅读(203) 评论(0) 推荐(0) 编辑
摘要: //float拆分成两个UInt16 public static UInt16 FloatToTwoUInt16(float f) { byte[] bs = BitConvert.GetBytes(); UInt16 low = BitConverter.ToUInt16(bs, 0); UInt16 high = BitConvert.ToUInt1... 阅读全文
posted @ 2018-11-27 14:03 梦醒江南·Infinite 阅读(3701) 评论(0) 推荐(1) 编辑
摘要: Git客户端不提供删除远程仓库的方法,gitblit服务器网页也不支持删除版本仓库。若要强制删除,Windows下可以: 先在任务管理器中停止gitblit进程,然后将gitblit版本库文件夹中将版本库删除,最后重启服务。 阅读全文
posted @ 2018-11-23 23:29 梦醒江南·Infinite 阅读(3859) 评论(1) 推荐(1) 编辑
摘要: 关键词:for cmd中查看帮助: for /? 循环一个数字序列: 示例: 示例结果: 阅读全文
posted @ 2018-11-16 23:19 梦醒江南·Infinite 阅读(10923) 评论(0) 推荐(0) 编辑
摘要: if (!Regex.IsMatch(diskName, @"^[c-zC-Z](:\\)?$")) { throw new FormatException($"{diskName} is not an effective disk name."); } 阅读全文
posted @ 2018-09-16 16:10 梦醒江南·Infinite 阅读(587) 评论(0) 推荐(0) 编辑
摘要: 原文: WPF编程之找不到资源“window1.xaml”之谜 因为将启动窗口移动到了一个新建的文件夹中,启动调试时报找不到资源mainWindow.xaml,原来是App.xaml里面设置的启动窗口的路径发生变化了,添加相对路径就可以启动了。 阅读全文
posted @ 2018-07-20 22:58 梦醒江南·Infinite 阅读(3364) 评论(0) 推荐(0) 编辑
摘要: 来源:https://stackoverflow.com/questions/11001822/copy-files-from-one-project-to-another-using-post-build-event-vs2010 阅读全文
posted @ 2018-07-17 14:19 梦醒江南·Infinite 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 参考:https://stackoverflow.com/questions/19586401/error-in-binding-resource-string-with-a-view-in-wpf 选中资源文件,右键->属性,“自定义工具”输入PublicResXFileCodeGenerator 阅读全文
posted @ 2018-06-20 18:06 梦醒江南·Infinite 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 原文:https://stackoverflow.com/questions/13387527/add-existing-xaml-files-to-visual-studio-2012Right-click the project and select "Unload Project" Right 阅读全文
posted @ 2018-06-20 16:26 梦醒江南·Infinite 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 比较工作目录中当前文件和暂存区域快照之间的差异(也就是修改之后还没有暂存起来的变化内容) 比较已暂存的将要添加到下次提交里的内容 Git 1.6.1及更高版本还 阅读全文
posted @ 2018-06-06 09:31 梦醒江南·Infinite 阅读(461) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 33 下一页