参考步骤
https://docs.microsoft.com/zh-cn/windows/wsl/install-win10
https://docs.microsoft.com/zh-cn/windows/wsl/
https://docs.microsoft.com/zh-cn/windows/wsl/compare-versions
使用 windows terminal 虽然很开心。可是使用 git log -n 1 的时候,出现中文乱码。这个得解决。
git config --global core.quotepath false
git config --global gui.encoding utf-8
git config --global i18n.commit.encoding utf-8
git config --global i18n.logoutputencoding utf-8
$env:LESSCHARSET='utf-8'
win + s 输入环境变量,回车就会出现环境变量设置框。
在环境变量模块增加 LESSCHARSET => utf-8 配置即可
习惯了 mac 的 iterm2。再来用 windows 的, 默认的终端太难用了。弄了个 gitbash 也不是很好用。下个 windows terminal 就相对好一些了。
那就下载 windows terminal 吧。
在 Microsoft Store 中搜 terminal。 找到 windows terminal,并开始下载和安装。
可是,可是这个时候报错。下载错误,查看错误详情,发现提示错误代码为 0x80070422。提示这么明显了,那就解决这个问题。
整站下载小飞兔:
下拉条调
::-webkit-scrollbar {
height: 16px;
overflow: visible;
width: 16px;
}
::-webkit-scrollbar-button {
height: 0px;
width: 0px;
}
::-webkit-scrollbar-corner {
background: transparent;
}
.docs-gm ::-webkit-scrollbar-thumb {
border-style: solid;
border-color: transparent;
border-width: 4px;
background-color: rgb(218, 220, 224);
border-radius: 8px;
box-shadow: none;
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.2);
background-clip: padding-box;
border-style: solid;
border-color: transparent;
border-image: initial;
border-width: 1px 1px 1px 6px;
min-height: 28px;
padding: 100px 0px 0px;
box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 0px inset, rgba(0, 0, 0, 0.07) 0px -1px 0px inset;
}
.docs-gm ::-webkit-scrollbar-track {
box-shadow: none;
margin: 0px 4px;
}
::-webkit-scrollbar-track {
background-clip: padding-box;
border-style: solid;
border-color: transparent;
border-image: initial;
border-width: 0px 0px 0px 4px;
}
最近,电脑休眠激活后,底部任务栏点击不了,win 快捷键也用不了。这个着实让人郁闷。第一次,重新启动电脑,解决了这个问题。今天又发现了。总不能每次都重启电脑吧,搜了一下,有几种方法,但只有一种方法,我这个情况就解决掉了。
选择用户,展开用户的进程,选中 Window资源管理器 , 点击窗口右下角的重新启动即可。
这样就解决问题了。记住上边第二步,一定要选到用户这个页签,在主页签找不到 windos资源管理器这个进程。
版本格式:主版本号.次版本号.修订号,版本号递增规则如下:
先行版本号及版本编译元数据可以加到“主版本号.次版本号.修订号”的后面,作为延伸。
继续阅读
在项目开发迭代中,会经常建立 git 分支。用完分支经常会删掉。可是删掉的分支,还是会显示在
git branch -r git branch -a 下,这样很难受。怎么办呢。这样干。
# 删除本地分支
git branch -d xxxx
# 查看remote地址,远程分支,还有本地分支与之相对应关系等信息
# 会提示哪些分支已经删除了,需要处理的命令 git remote prune
git remote show origin
# 清理
git remote prune origin
git remote prune 命令可以删除本地版本库上那些失效的远程追踪分支,具体用法是,假如你的远程版本库名是 origin,则使用如下命令先查看哪些分支需要清理:
git remote prune origin --dry-run
可以看到, origin/xxx 的远程分支已经失效了,将会被清理。再执行 git remote prune origin 就可以清理掉已经失效的远程分支了。