当我从windows gitbash命令行中打卡时:
set $HOME = c
并且做:
echo $HOME
它没有将其设置为c
?如何更改/设置环境变量的值?
答案 0 :(得分:69)
通过简单地为其赋值来设置正常变量;请注意=
:
HOME=c
环境变量是已标记为导出到环境的常规变量。
export HOME
HOME=c
您可以将作业与export
声明合并。
export HOME=c
答案 1 :(得分:23)
如果你想在Git-Bash中永久设置环境变量,你有两个选择:
设置常规Windows环境变量。 Git-bash在startupp获取所有现有的Windows环境变量。
在.bash_profile
文件中设置env变量。
.bash_profile
位于用户主文件夹中,例如C:\users\userName\git-home\.bash_profile
。您可以通过设置HOME
Windows环境变量来更改bash主文件夹的路径。
.bash_profile
文件使用常规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"
的更多信息
答案 2 :(得分:1)
在主目录中创建.bashrc文件也可以。这样,您不必在每次安装新版本的git bash时都复制.bash_profile