好工具推荐系列:Windows打开CMD命令的快捷键/代理上网的方法/Cmder

右键打开cmd命令

1、进入具体某个文件夹的路径

2、鼠标点击文件夹弹出右键菜单,点击的同时要按住shift

3、弹出的菜单会有“在此处打开命令窗口”选项。

恭喜(#^.^#)

 

 

管理员权限打开cmd命令

Windows桌面-开始-所有程序-附件-命令提示符,右键菜单,管理员权限打开

 

 

Windows cmd代理上网

  • Windows使用代理网络上网时,如果需要配置cmd命令行也能上网,使用如下命令配置:

=======管理员打开cmd,设置代理,source=ie指的是和ie浏览器的代理设置保持一致=========
netsh winhttp import proxy source=ie

注意:此命令需要在管理员权限下配置。Windows桌面-开始-所有程序-附件-命令提示符,右键菜单,管理员权限打开

=======如何查看代理=========
netsh winhttp show proxy

=======如何取消代理=========
netsh winhttp reset proxy

 

  • git cmd输入命令:

http代理:

set http_proxy=http://127.0.0.1:8000
set https_proxy=http://127.0.0.1:8000

set http_proxy=socks5://127.0.0.1:8000
set https_proxy=socks5://127.0.0.1:8000

git http代理:【推荐使用】

git config --global http.proxy http://127.0.0.1:8000
git config --global https.proxy http://127.0.0.1:8000

设置成功,会记录在C:\Users\firecat\.gitconfig,文本内容是:

[core]
	autocrlf = true
[credential "helperselector"]
	selected = manager
[http]
	proxy = http://127.0.0.1:8100
[https]
	proxy = http://127.0.0.1:8100

git socks5代理:

git config --global http.proxy socks5://127.0.0.1:8000
git config --global https.proxy socks5://127.0.0.1:8000

取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy

查看代理

git config --get --global http.proxy
git config --get --global https.proxy

git config --get --global http.proxy socks5
git config --get --global https.proxy socks5

 

 

增强版cmd终端工具

  • cmder【推荐】

Lovely console emulator package for Windows。安装路径必须在英文路径,不能有中文。

https://cmder.net/

https://github.com/cmderdev/cmder

https://www.cnblogs.com/michael-xiang/p/10466074.html 教程

  • babun

http://babun.github.io/

https://github.com/babun/babun

  • powercmd

http://www.powercmd.com/

  • terminal

微软新开发的终端工具,只能在Win10使用,不支持Win7

https://github.com/microsoft/terminal

 

 

参考文献

https://www.jianshu.com/p/b9047a59ffc9

 

你可能感兴趣的:(好工具推荐)