标签 wsl 下的文章

2020-02-26T07:50:22.png

Windows Subsystem for Linux (WSL) 就是 Windows 10 下安装的 Linux 子系统,有了它可以很方便的使用 Linux,WSL 也可以很方便的访问本地磁盘文件。

vs code 已经成为目前个平台最流行的代码编辑平台,也是我最常用的编辑器,通过插件设置,可以在 WSL 环境下使用 vs code,这对于环境开发和编辑工作有极大的帮助,下面介绍设置方法。

相关链接:

阅读全文


将 Git 的 credential 证书保留在系统,可以避免每次操作都需要输入账户密码。

各系统中设置缓存参考我的文章:https://niekun.net/index.php/archives/444.html

对于 Windows 10 用户,系统内置了 Windows subsystem for Linux (WSL),我们可以共享存储在本地的 Git credential 证书,这样两个系统使用 git 都很方便。

关于 WSL 的安装与使用参考:https://niekun.net/index.php/archives/1148.html

首先在 Windows 10 下设置 credentials,在 power shell 下输入如下命令:

git config --global credential.helper wincred
可以在仓库内测试执行 git push 命令,如果提示输入账户密码,则输入一次,以后就不会再提示了。

然后在 WSL 设置,打开系统内安装好的 WSL,首先安装好 git,然后敲入如下命令:

git config --global credential.helper "/mnt/c/Program\ Files/Git/mingw64/libexec/git-core/git-credential-wincred.exe"