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

时间:2015-12-09 02:23:37

标签: git git-bash

当我从windows gitbash命令行中打卡时:

set $HOME = c

并且做:

echo $HOME

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

3 个答案:

答案 0 :(得分:69)

通过简单地为其赋值来设置正常变量;请注意=

周围不允许有空格
HOME=c

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

export HOME
HOME=c

您可以将作业与export声明合并。

export HOME=c

答案 1 :(得分:23)

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

  1. 设置常规Windows环境变量。 Git-bash在startupp获取所有现有的Windows环境变量。

  2. .bash_profile文件中设置env变量。

  3. 默认情况下,

    .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

    的更多信息

答案 2 :(得分:1)

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