14

我最近一直在添加一些别名和 .bash_profile 函数。但我注意到我的 mac 终端没有自动加载 .profile 文件,因此别名不起作用。

我已经重新启动了终端和 mac 本身。

我可以通过这样做来让它工作,但这是一个糟糕的工作:

. .profile

任何人以前都有过这个/知道我该如何解决它。

我的 .profile 文件包含以下内容:

export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced

alias testsite="cd /Applications/MAMP/htdocs/testsite/"
alias mamp="cd /Applications/MAMP/"
alias htdocs="cd /Applications/MAMP/htdocs/"
alias deploy="git push"
alias deploymaster="git push parent master"
alias pullmaster="git pulll parent master"
4

1 回答 1

18

.bash_profile 覆盖 .profile 所以我添加的内容必须添加到 .bash_profile 中,这样可以完美地完成。

于 2012-04-30T13:16:54.153 回答