会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
dlbird的博客
我思我想故我在
导航
博客园
首页
新随笔
联系
订阅
管理
<
2025年3月
>
日
一
二
三
四
五
六
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
统计
随笔 - 108
文章 - 1
评论 - 5
阅读 -
64788
公告
昵称:
雪域月光
园龄:
17年8个月
粉丝:
8
关注:
0
+加关注
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
我的标签
IronPython
(1)
git
(1)
随笔分类
git(6)
程序开发(1)
程序人生(1)
随笔档案
2023年11月(1)
2023年5月(1)
2022年8月(1)
2022年6月(1)
2021年8月(5)
2019年1月(2)
2018年8月(4)
2018年4月(2)
2018年3月(4)
2017年8月(1)
2016年9月(1)
2016年5月(2)
2015年5月(3)
2015年4月(9)
2015年3月(5)
2015年2月(3)
2015年1月(3)
2014年12月(2)
2014年10月(6)
2014年9月(7)
2014年8月(4)
2014年7月(4)
2014年6月(6)
2014年5月(2)
2013年12月(3)
2010年12月(2)
2010年7月(1)
2008年6月(6)
2007年12月(1)
2007年11月(3)
2007年10月(9)
2007年9月(4)
更多
阅读排行榜
1. NET(C#):关于正确读取中文编码文件(6462)
2. C# winform 支持html5的 控件(5961)
3. VB.NET和VB6.0有什么区别(转)(3891)
4. C#反射调用其它DLL的委托事件 传值(2430)
5. 【Jquery mobile】动态加载ListView 转(1923)
评论排行榜
1. git tortoise commit 出现 fatal bad revidion head(2)
2. 短信3(2)
3. [STAThread]的使用(1)
推荐排行榜
1. Winform开发框架之简易工作流设计(转自 伍华聪博客)(2)
2. 编程为谁?(2)
3. freeswitch dialplan 基础(1)
4. NET(C#):关于正确读取中文编码文件(1)
最新评论
1. Re:git tortoise commit 出现 fatal bad revidion head
git update-ref HEAD 的确好用
--开心园地
2. Re:git tortoise commit 出现 fatal bad revidion head
将.git\logs\refs\heads\xxx (当前分支) 中的最后一个哈希值 复制到 .git\refs\heads\xxx(当前分支) 中 .git\refs\remotes\origin\...
--lbk
3. Re:短信3
串口线
--雪域飞鸟
4. Re:短信3
数据线是串口线还是usb线啊
--dsada
5. re: [STAThread]的使用
靠,帮了我大忙
--靠,帮了我大忙
2023年11月1日
windows如何查看cpu是否支持aux2指令集
想知道自己的cpu支不支持,可以用CPU-Z、AIDA64等软件,一抓一大把。或者你直接根据你的cpu型号就行了,Sandy Bridge及以后都支持,比如I5-2xxx。
posted @ 2023-11-01 21:00 雪域月光
阅读(324)
评论(0)
推荐(0)
编辑
2023年5月15日
git commit错误 error: bad signature 0x00000000 fatal: index file corrupt
摘要: git commit错误 error: bad signature 0x00000000 fatal: index file corrupt 这个错误信息表明您的 git 仓库中的索引文件已损坏。修复此问题的一种方法是删除索引文件并重置它。您可以在仓库的根目录中运行以下命令: rm -f .git/
阅读全文
posted @ 2023-05-15 09:50 雪域月光
阅读(1825)
评论(0)
推荐(0)
编辑
2022年8月31日
git pull时遇到error: cannot lock ref 'xxx': ref xxx is at (一个commitID) but expected的解决办法
摘要: (30条消息) git pull时遇到error: cannot lock ref 'xxx': ref xxx is at (一个commitID) but expected的解决办法_绯浅yousa的博客-CSDN博客 遇到的master有问题,同样删除有效
阅读全文
posted @ 2022-08-31 00:52 雪域月光
阅读(112)
评论(0)
推荐(0)
编辑
2022年6月21日
git tortoise commit时出错 fatal : unable to read f77cxxxxxxxxxxx
摘要:
阅读全文
posted @ 2022-06-21 14:06 雪域月光
阅读(242)
评论(0)
推荐(0)
编辑
2021年8月29日
git unable to resolve reference 'refs/remotes/gitee/20210825-add-Projet-coreScene': reference broken
摘要: 现象: 1.unable to resolve reference 'refs/remotes/gitee/20210825-add-Projet-coreScene': 2.找到远程仓库目录“项目名\refs\heads” 文件里面是Nulll乱码 3.问题的原因应该是没有先pull 第二步,第一
阅读全文
posted @ 2021-08-29 15:15 雪域月光
阅读(263)
评论(0)
推荐(0)
编辑
2021年8月28日
git如何获取远端仓库新分支
摘要: 1.git fetch:从远程获取最新版本到本地,不会自动merge git fetch orgin master //将远程仓库的master分支下载到本地当前branch中 git log -p master ..origin/master //比较本地的master分支和origin/mast
阅读全文
posted @ 2021-08-28 12:44 雪域月光
阅读(1503)
评论(0)
推荐(0)
编辑
2021年8月6日
git 清除本地修改
摘要: git checkout . 参考 Git删除本地修改_weixin_30416871的博客-CSDN博客
阅读全文
posted @ 2021-08-06 11:54 雪域月光
阅读(383)
评论(0)
推荐(0)
编辑
2021年8月4日
项目添加git忽略文件无效的处理
摘要: 第一次 问题 1、git rm -r --cached . //需要完整复制 git add . git commit -m 'update .gitignore' 缓存清理后,忽略文件就生效了。 参考:项目添加git忽略文件无效的解决方案。_左倾135度的博客-CSDN博客 第二次问题:相同的现象
阅读全文
posted @ 2021-08-04 13:25 雪域月光
阅读(295)
评论(0)
推荐(0)
编辑
git tortoise commit 出现 fatal bad revidion head
摘要: 第一次 、采用 update直接还原 git update-ref HEAD 3274b39b2cadfe128f047b618c8bf5a34c463a1a git操作错误Failed to resolve HEAD as a valid ref解决方案_喵″的博客-CSDN博客 第二次:出现该问
阅读全文
posted @ 2021-08-04 13:20 雪域月光
阅读(607)
评论(2)
推荐(0)
编辑
2019年1月20日
freeswitch 使用info显示的通道变量
摘要: 2019-01-20 11:57:30.167311 [INFO] mod_dptools.c:1743 CHANNEL_DATA:Channel-State: [CS_EXECUTE]Channel-Call-State: [RINGING]Channel-State-Number: [4]Cha
阅读全文
posted @ 2019-01-20 12:25 雪域月光
阅读(1106)
评论(0)
推荐(0)
编辑
下一页
点击右上角即可分享