当我从windows gitbash命令行:
set $HOME = c
并做:
echo $HOME
它没有设置它c
?如何更改/设置环境变量的值?
通过简单地为其赋值来设置正常变量; 请注意,周围不允许有空格=
:
HOME=c
环境变量是已标记为要导出到环境的常规变量.
export HOME HOME=c
您可以将赋值与export
语句组合.
export HOME=c
如果要将环境变量永久保存到Git Bash环境中,您有两种选择:
使用常规Windows环境变量.Git-bash在shell启动时获取所有现有的Windows环境变量.
如果您不想污染Windows环境,您仍然可以在.bash_profile
文件中永久设置env变量.
.bash_profile
默认情况下位于用户主文件夹中,如C:\users\userName\git-home\.bash_profile
.您可以通过设置HOME
Windows环境变量来更改bash主文件夹的路径.
.bash_profile
file使用常规的Bash语法和命令
# Export a variable in .bash_profile export DIR=c:\dir # Nix path style works too export DIR=/c/dir # And don't forget to add quotes if a variable contains whitespaces export ANOTHER_DIR="c:\some dir"
阅读有关Bash配置文件的更多信息.