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.

MacでGitをバージョンアップする

Last updated at Posted at 2021-05-23

はじめに

MacのbrewコマンドでインストールしたGitをバージョンアップします。

方法

brew自体を最新に更新します。
バージョンアップが存在するかを確認する。

バージョンアップ確認コマンド
brew update
brew outdated | grep git

実行結果でgitが表示された場合は、バージョンアップが可能です。
下記のコマンドでアップグレードを行います。

アップグレードコマンド
brew upgrade git

bashコンプリートファイルの設定

実行結果に表示されているように、下記のフォルダに、コンプリートファイルが格納されているので、.bash_profileで読み込むように設定します。

コンプリートファイルについての説明
Bash completion has been installed to:
  /usr/local/etc/bash_completion.d
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?