欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

windows下IDEA的Terminal配置bash命令

程序员文章站 2024-03-21 16:50:10
...

使用 Git 自带的 bash.exe 配置到 Terminal ,如果电脑上面没有Git需要安装一个

windows下IDEA的Terminal配置bash命令
windows下IDEA的Terminal配置bash命令

如果有需要添加颜色 需要添加以下两个文件

  • .bash_profile
	if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
  • .bashrc
	alias ls='ls -F --color=auto --show-control-chars' # 使用ls命令的时候加上颜色
	export LC_ALL=zh_CN.UTF-8 # 设置终端打开的编码
	alias ll='ls -la -F --color=auto --show-control-chars'
相关标签: 工具及环境