0
1

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のバージョンアップ

Posted at

はじめに

gitちゃんと勉強して使えるようになろう! 
と思ってバージョン確認してみたら古かった。で,バージョンアップしようとしたけど手こずったのでメモします。でもちゃんと自分で解決できた!嬉しい!
ちなみにMacです。

そもそもよく理解してないままQiitaとかの記事見てそのままコピペするからいけないんだよね。。

で,本題

まずはバージョン確認

$ git --version
git version 2.20.1 (Apple Git-117)

今2.29.2とかなんで古いですね。

$ brew update 

これはこのまま戻ってこなくなった。よくわかってないです。
あんまり待っても返ってこないから ctrl+C しました。

$ brew install git
Updating Homebrew...
...

ここから下つらつらつらーっと続きます。
どうやら上の2行だけでできるらしいんですが。

$ git --version
git version 2.20.1 (Apple Git-117)

変わってないじゃん!!!
で,よくわかってないからインストールできてないのかなってまた同じことしたりしてました。。

$ which git
/usr/local/bin/git

よくわからないままパスがなんちゃらって読んで,確認して,わからん!!ってなり。
Summaryにどこにインストールされたかが書いてあることを知り,遡って探して…
(無駄にいじったんで探すの大変でした笑)

インストール文の途中,

==> Summary
🍺  /usr/local/Cellar/git/2.29.2: 1,480 files, 39.2MB

見つけた!
そこだけコピペして,ちょっと付け足して,

$ /usr/local/Cellar/git/2.29.2/bin/git --version
git version 2.29.2

できてたーー!

で,多分このデフォルトになってるApple Gitじゃなくこれにパス指定した方がいいんだよね?ってことで

$ echo 'export PATH="/usr/local/Cellar/git/2.29.2/bin:$PATH"' >> ~/.zshrc
$ source ~/.zshrc
$ git --version
git version 2.29.2

終わりに

一応,インストールは初めにできてたんだけど,確認ができなくて手こずった,って話でした。
簡単に言うと場所が違ったってことですね。
ひとつ成長!

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?