🍎

macOS環境構築について

2024/08/05に公開

はじめに

AppleMusicのMP3インポートくらいでしか使っていなかったMacBookを初期化しました。
chrome/vscode/gitなどを最低限?セットアップし、リポジトリのcloneまでやった時の手順をメモしておきます。

Command Line Tools

xcode-select --install

Homebrew

https://brew.sh/

brew install google-chrome
brew install visual-studio-code
brew install git
brew list
brew upgrade

VSCode

codeコマンドをインストールする

  • command + shift + Pからコマンドパレットを開く
  • shell command installからインストールする

git

Homebrewからインストールしたgitを使う

which git
/usr/bin/git --version
/usr/local/bin/git --version

GitHub

GitHubへSSHできるようにする

ssh -T git@github.com

https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent?platform=mac

https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account

GitHubで編集を提案

Discussion