使用git-bash.exe會單獨打開一個窗口,而咱們但願是在終端內置的命令行。這裏我使用bash.exegit
在IDEA中,打開settings,設置相應的bash路徑 settings
–>Tools
–>Terminal
–>Shell path:D:\Program Files\Git\bin\bash.exe
bash
使用sublime在${user}
這目錄下建立兩個文件:編碼
.bash_profile
.bashrc
例如:【C:\Users\John】spa
文件內容以下:命令行
.bash_profilecode
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
.bashrcblog
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'
重啓terminal便可使用bash.exe命令terminal