0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

MacにHomebrewをインストールしてGitもインストールしてGit設定するまで

Posted at

はじめに

新しいMacを購入すると、いろいろと設定を忘れてしまうので、改めて設定してそれを残します。

やりたいこと

  • SHELLの確認
  • MacにHomebrewをインストールする
  • Homebrewを使ってGitをインストールする
  • GithubからCloneや、GithubにPushできるように設定する

環境

  • Mac OS:14.6.1
  • SHELL: Zsh

SHELLの確認

一応確認する

$ echo $SHELL
/bin/zsh
$ zsh --version
zsh 5.9 (x86_64-apple-darwin23.0)

MacにHomebrewをインストールする

ここに書いてあるようにやる

$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
$ brew --version
Homebrew 4.3.18
$ (echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/(user)/.zprofile
$ eval "$(/opt/homebrew/bin/brew shellenv)"

Homebrewを使ってGitをインストールする

$ brew install git
$ git version
git version 2.45.2

GithubからCloneや、GithubにPushできるように設定する

公開鍵を作成し、githbuに登録

$ mkdir .ssh
$ cd .ssh
# 公開鍵の作成
$ ssh-keygen -t rsa
$ cat id_rsa.pub
# 公開鍵のコピー
$ pbcopy < id_rsa.pub
# githubに登録後、確認
$ ssh -T github
$ ssh -T git@github.com
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?