2
3

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.

gitのバージョンアップデートがうまく適応されない時の対処法

Last updated at Posted at 2020-06-20

最近gitの脆弱性アップデートがあったので更新しようとしたら上手く最新のバージョンが適応されず困りました。

Gitのアップデート

バージョンを確認してアップデートする

$ git --version
git version 2.24.3 (Apple Git-128)
$ brew upgrade git
git-2.26.1 installed

これでインストールできたかな?って思って確認するとバージョンが変わっていない。

$ git --version
git version 2.24.3 (Apple Git-128)

Gitに正しいPathを通す

とりあえずgitの居処を探してみよう。

$ which git
/usr/bin/git
$ /usr/bin/git --version
git version 2.24.3 (Apple Git-128)

でも実はgitの居場所はもう一つある。

$ /usr/local/bin/git --version
git version 2.26.1

こっちのバージョンがアップデートされてるみたい。
なので、gitのパスをこっちに通せばオッケー。

$ vi ~/.bashrc

ここに下記の一文を追加します。私はbashrcだけど人によってはbash_profileの人もいると思います。

export PATH=/usr/local/bin:$PATH

これで無事gitのアップデートは完了しました!
めでたしめでたし。

$ git --version
git version 2.26.1
2
3
0

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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?