🍎
macOS環境構築について
はじめに
AppleMusicのMP3インポートくらいでしか使っていなかったMacBookを初期化しました。
chrome/vscode/gitなどを最低限?セットアップし、リポジトリのcloneまでやった時の手順をメモしておきます。
Command Line Tools
xcode-select --install
Homebrew
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
Discussion