把過去的累積,善用到當下
2022/03/03 18:02:50
java '-Dfile.encoding=utf-8' -jar windows.jar --cmd="ipconfig"
powershell中添加编码的时候报错 需要使用引号引起来
2022/03/02 08:45:51
git log --pretty=oneline --date=short --format="%cd %an %p %s" log.txt | sort
查询指定文件的变更记录,并按照时间先后顺序排序
2022/03/01 15:52:20
git ls-files -z -x test "*.md" | xargs -0 -n1 -I{} -- git log -1 --date=short --format="%cd %an {}" {} 查询git下所有md文件的最后更新时间和更新人员
2022/03/01 14:04:13
git 命令中 中文显示为数字的时候 执行一次git config --global core.quotepath false