git は便利なんだけど、リポジトリ名が長くて暗記できなのがツラい所ですよね。

忘れて毎回プラグインのリンクを探すのがめんどくさいのでいつも入れるものをメモっておきます。

2022-10-17 追記

最近は anyenv の manifestを使えば一括で処理できて便利なのでそちらを使っています。

rbenv インストール必須なのまとめ

# rbenv 本体
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile

# Plugins
mkdir ~/.rbenv/plugins
# ほぼ必須。ruby本体入れるのに使う。これ無しで使う方法知らない。
git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
# `rbenv rehash`が自動的に
git clone https://github.com/sstephenson/rbenv-gem-rehash.git ~/.rbenv/plugins/rbenv-gem-rehash
# `rbenv update`コマンドが使えるように
git clone https://github.com/rkh/rbenv-update.git ~/.rbenv/plugins/rbenv-update
# `rbenv install` するごとに特定のgemをいれる
git clone https://github.com/sstephenson/rbenv-default-gems.git ~/.rbenv/plugins/rbenv-default-gems

anyenv経由でrbenvを使う場合はプラグインの配置場所が違うので気をつけましょう。 デフォルトでruby-buildは入るので必要ありません。それにanyenv updateがあるのでrbenv-updateも外しましょう。

git clone https://github.com/sstephenson/rbenv-gem-rehash.git ~/.anyenv/envs/rbenv/plugins/rbenv-gem-rehash
git clone https://github.com/sstephenson/rbenv-default-gems.git ~/.anyenv/envs/rbenv/plugins/rbenv-default-gems