我刚刚为Windows安装了Git,很高兴看到它安装了Bash。

我想以同样的方式自定义shell,我可以在Linux下(例如设置别名ll为ls -l),但我似乎找不到.bashrc或等效的配置文件。

我应该编辑什么?


当前回答

在Windows上:

你可以在C:\Users\[YourUserName]目录下找到。bashrc

其他回答

有时文件实际上位于~/。以下是我在Visual Studio Code/Windows 10上启动Zsh作为默认终端的步骤。

cd ~ / vim . bashrc 粘贴下面的…

如果test -t 1;然后 exec zsh fi

保存/关闭Vim。 重启终端

如果您使用的是Git for Windows 2.21.0或更高版本(在撰写本文时),则应该在主目录中编辑.bash_profile。

你可以直接将.bash_profile指向.bashrc,但是如果你的.bash_profile发生了什么,那么就不清楚为什么你的.bashrc不能工作。

我把我所有的别名和其他环境的东西放在.bash_profile中,我还添加了这一行:

echo "Sourcing ~/.bash_profile - this version of Git Bash doesn't use .bashrc"

然后,在。bashrc中

echo "This version of Git Bash doesn't use .bashrc. Use .bash_profile instead"

(基于@harsel的回应。我本想发表评论,但我现在还没有观点。)

在~/下创建一个.bashrc文件。Bashrc,你走吧。与~/.gitconfig类似。

~通常是你的C:\Users\<你的用户名>文件夹。在Git Bash终端中输入echo ~会告诉你这个文件夹是什么。

如果你不能创建文件(例如运行Windows),运行下面的命令:

copy > ~/.bashrc

该窗口将输出一条错误消息(未找到命令),但将创建文件并准备好供您编辑。

请使用以下命令,

cat /etc/bash.bashrc > ~/.bashrc

这将生成一个具有默认值的新bashrc文件。请使用vi ~/。Bashrc来编辑此文件。

访问:C:\Program Files\Git\etc\profile.你在里面找到你需要的一切。 或者在您的主目录中创建.bashrc和.bash_profile。

. bash_profile

# generated by Git for windows
test -f ~/.profile && . ~/.profile
test -f ~/.bashrc && . ~/.bashrc

. bashrc

echo "Hello World!"