Homebrew
- Formulaの詳細確認
brew info [formula名]
- Formulaのファイル一覧の確認
brew list --verbose [formula名]
- カレントディレクトリへのBrewfileの作成
brew bundle dump --force --describe
asdf
- plugin追加
asdf plugin add [plugin名]
- Pluginのアップデート
asdf plugin update [plugin名]
- インストールできるものの確認
asdf list all [plugin名]
gh
- ログイン
gh auth login
- リポジトリ作成
gh repo create [ユーザ名]/[リポジトリ名] --(private|public)
git
- ブランチの作成と切り替え(checkout→switchに移行する)
git switch -c feature/your-branch-name
# git checkout -b feature/your-branch-name
ssh
- 鍵の生成
ssh-keygen -t ed25519 -C "コメント"
- パスフレーズの登録
ssh-add -K [秘密鍵のパス]