当前位置:  开发笔记 > 编程语言 > 正文

在git bash中设置一个环境变量

如何解决《在gitbash中设置一个环境变量》经验,为你挑选了2个好方法。

当我从windows gitbash命令行:

set $HOME = c

并做:

echo $HOME

它没有设置它c?如何更改/设置环境变量的值?



1> chepner..:

通过简单地为其赋值来设置正常变量; 请注意,周围不允许有空格=:

HOME=c

环境变量是已标记为要导出到环境的常规变量.

export HOME
HOME=c

您可以将赋值与export语句组合.

export HOME=c



2> Alex..:

如果要将环境变量永久保存到Git Bash环境中,您有两种选择:

    使用常规Windows环境变量.Git-bash在shell启动时获取所有现有的Windows环境变量.

    如果您不想污染Windows环境,您仍然可以在.bash_profile文件中永久设置env变量.

.bash_profile默认情况下位于用户主文件夹中,如C:\users\userName\git-home\.bash_profile.您可以通过设置HOMEWindows环境变量来更改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配置文件的更多信息.

推荐阅读
吻过彩虹的脸_378
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有