Windows下git bash与WindTerm集成
Windows下git bash与WindTerm集成
说明
git bash是gitforwindows的项目,总体来说就是一个集成了一些Unix类型工具的Windows终端模拟器,WindTerm 则是一个终端工具,是SecureCRT的开源平替。
下面是git-bash和WindTerm的基本说明引用:
Git for Windows provides a BASH emulation used to run Git from the command line. *NIX users should feel right at home, as the BASH emulation behaves just like the "git" command in LINUX and UNIX environments.
WindTerm:A Quicker and better SSH/Telnet/Serial/Shell/Sftp client for DevOps.
配置
git配置
git需要配置bash.exe的相关环境变量,其配置位于安装目录中的 etc/bash.bashrc
,在其中文末追加以下配置
export PATH=/usr/bin:$PATH
当然,你也可以添加其他的配置,比如像我添加一些banner和alias:
export PATH=/usr/bin:$PATH
cd ~ && clear
echo " _ _ "
echo " (_)_ _ ___ _______ ___ ___ (_)__ ___ __ _____ ____ ___ _"
echo " / / ' \/ _ \/ __/ -_|_-<(_-</ / _ \/ _ \/ // / _ \`/ _ \/ _ \`/"
echo "/_/_/_/_/ .__/_/ \__/___/___/_/\___/_//_/\_, /\_,_/_//_/\_, / "
echo " /_/ /___/ /___/ "
echo "session at" `date`
alias ll='ls -lh'
alias la='ls -a'
alias lla='ls -lah'
WindTerm配置
至于WindTerm的配置的话,基本上只要在添加会话时使用自定义的Shell即可,如下图
然后在自定义Shell的输入框中添加:git安装路径\usr\bin\bash.exe
即可
效果
这样子启动后就可以直接得到以下效果,环境变量也可以得到继承。