我的个人 Git Bash 配置文件
我的 Git 安装目录在 D:\dev\git
以下所有命令都需要在以管理员身份运行的 Git Bash 中执行。
先 clone 此 repo,然后 cd 到目录中再执行下面的所有操作。
$ git clone https://github.com/pudding0503/my-git-bash.git
$ cd my-git-bash
本配置默认使用 DejaVu Sans Mono for Powerline 字体。
你也可以使用 Oh My Posh 推荐的 Nerd 字体。 Nerd 字体是流行的字体,经过修补以包含图标。 推荐 Meslo LGM NF,但任何 Nerd 字体都应该与标准主题兼容。
执行命令后,将全部字体文件拖放进去即可完成安装。
$ start c://Windows//Fonts && start %cd%/fonts
$ cp .minttyrc ~ && cp git-prompt.sh /etc/profile.d
安装主题后同时会开启复制粘贴快捷键:Ctrl + Shift + C/V,需要 Git Bash 版本大于 2.20.0 才可以使用。
$ cp bash.bashrc /etc
其中,含有 Clash for Windows 代理 HTTP 的配置:
# Clash for Windows HTTP
export http_proxy=http://127.0.0.1:7890;export https_proxy=http://127.0.0.1:7890
$ cp .bash_profile ~
$ cp .gitconfig ~
注意,这里的 [user] 信息是与 Github Desktop 登陆的账户一致(多 Github 用户请注意):
[user]
email = bitcookies@nousbuild.com
name = bitcookies
在 VSCode 中使用 Git Bash
只需要在 Settings.json
中添加 bash.exe
的文件路径。(注意,但是这样会默认取消使用 CMD or PowerShell)
{
"terminal.integrated.shell.windows": "D:\\dev\\git\\bin\\bash.exe"
}