会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
kekemuyu
CnBlogs
Home
New Post
Contact
Admin
Subscription
上一页
1
2
3
4
5
6
7
下一页
2020年2月19日
go设置环境变量
go env -w GOPROXY= go env -w GO111MODULE=on
Read More
posted @ 2020-02-19 21:53 kekemuyu
Views(377)
Comments(0)
Diggs(0)
2020年1月21日
git切换到某个tag
git clone 整个仓库后使用,以下命令就可以取得该 tag 对应的代码了。 git checkout tag_name 但是,这时候 git 可能会提示你当前处于一个“detached HEAD" 状态。 因为 tag 相当于是一个快照,是不能更改它的代码的。 如果要在 tag 代码的基础上做
Read More
posted @ 2020-01-21 12:39 kekemuyu
Views(8693)
Comments(0)
Diggs(0)
git 取得两个 tag 之间的 commit
git log --pretty=oneline tagA...tagB If you just wanted commits reachable from tagB but not tagA: git log --pretty=oneline tagA..tagB or git log --pre
Read More
posted @ 2020-01-21 12:21 kekemuyu
Views(1541)
Comments(0)
Diggs(1)
2019年12月25日
字符串查找
从根目录开始查找所有扩展名为.log的文本文件,并找出包含”ERROR”的行find / -type f -name “*.log” | xargs grep “ERROR"
Read More
posted @ 2019-12-25 15:01 kekemuyu
Views(140)
Comments(0)
Diggs(0)
2019年12月24日
licheepi
uboot烧录 将uboot写入到sd卡8k偏移处。 sudo dd if=u-boot-sunxi-with-spl_480800.bin of=/dev/sdb bs=1024 seek=8
Read More
posted @ 2019-12-24 22:40 kekemuyu
Views(414)
Comments(0)
Diggs(0)
2019年12月13日
打印go中指针的内容
fmt.Println("%v",x);
Read More
posted @ 2019-12-13 08:01 kekemuyu
Views(3139)
Comments(0)
Diggs(0)
2019年12月7日
go tool dist list
查询go支持cpu架构
Read More
posted @ 2019-12-07 15:26 kekemuyu
Views(488)
Comments(0)
Diggs(0)
2019年11月1日
linux字符集设置
使用dpkg-reconfigure locales,选择字符集。
Read More
posted @ 2019-11-01 23:37 kekemuyu
Views(832)
Comments(0)
Diggs(0)
2019年10月25日
iptable双网卡共享上网
iptable双网卡共享上网 iptable双网卡共享上网 iptables -t nat -F iptables -P INPUT ACCEPTiptables -P FORWARD ACCEPT iptables -t nat -A POSTROUTING -o (外网网卡) -j MASQUE
Read More
posted @ 2019-10-25 14:58 kekemuyu
Views(477)
Comments(0)
Diggs(0)
2019年10月21日
查看串口设备
查看串口设备 dmesg | grep ttyS*
Read More
posted @ 2019-10-21 16:52 kekemuyu
Views(367)
Comments(0)
Diggs(0)
上一页
1
2
3
4
5
6
7
下一页
公告