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

问题描述 投票:41回答:3

当我从windows gitbash命令行:

set $HOME = c

并做:

echo $HOME

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

git git-bash
3个回答
67
投票

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

HOME=c

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

export HOME
HOME=c

您可以将赋值与export语句结合使用。

export HOME=c

22
投票

如果你想在Git-Bash中永久设置环境变量,你有两个选择:

  1. 设置常规Windows环境变量。 Git-bash在启动时获取所有现有的Windows环境变量。
  2. .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"

阅读有关Bash configurations files的更多信息。


1
投票

在主目录中创建.bashrc文件也可以。这样,每次安装新版本的git bash时都不必复制.bash_profile

© www.soinside.com 2019 - 2024. All rights reserved.