14
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Windows環境のgit bashに環境変数を追加する

Posted at

Windows環境のgit bashに環境変数を追加する

Windowsのシステム環境変数でパスを通したらgit bashの方もパスが通る。そう思っていた時期が俺にもありました…(出典:バキ25巻)

やり方

  1. ホームディレクトリに.bashrc_profileを作成する
  2. 環境変数PATHを上書きする処理を書く
    export PATH="パス"

説明

.bashrc_profileがbash起動時に実行される処理で、そこで環境変数PATHを上書きすることでパスを通す、といった感じ。
echo $PATHで現在のパスを出力する → その後ろに通したいパスを追加する → .bashrc_profileに書くといった手順がよさそう。

.bashrc.bashrc_profileの違いについてはいい記事があったのでこちらを参照してください。
https://qiita.com/magicant/items/d3bb7ea1192e63fba850

14
6
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?