[关闭]
@zifeng328573112 2024-07-05T06:26:34.000000Z 字数 515 阅读 152

紫枫-技术笔记

1,在Windows中查看文件的MD5值

Command Prompt(CMD)、Powershell 均可。

certutil -hashfile 文件路径/文件名称 MD5
certutil -hashfile 文件路径/文件名称 SHA1
certutil -hashfile 文件路径/文件名称 SHA256

2,在Windows中查看WIFI名字和密码

1,netsh wlan show profiles
2,netsh wlan show profiles name ="TP-LINK_1310" key=clear

3,git 修改历史提交记录

1, git rebase -i fc303d784df9daf977a93e194e0ff41c91547190(需要修改的提交记录的上一条)
2,进入 rebase,i->回车->pick 改成 e->esc->:wq
3,GIT_COMMITTER_DATE="2014-07-02T11:04:09" git commit --amend --date="2014-07-02T11:04:09" -m "开发版本V1.0.0.01" --author="罗毅"
4,git rebase --continue
5,git push --force

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注