AD:
rbenvを使ってRubyの環境を構築していると思うのですが、
最新のRubyのVersionを入れたい場合、始めにrbenvのUpgradeをしたほうがより最新のものが入ってきますので、その方法をメモしておきます。
|
brew update brew upgrade rbenv ruby-build |
これで終わりです。
あとは、下記のコマンドで最新のRubyの一覧がでてきます。
Installはこんな感じですね。
|
rbenv install 2.2.3 rbenv global 2.2.3 rbenv rehash ruby -v ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-darwin14] |
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 0 | Pocket: 1 | Total: 1 | Feedly: 0
AD:
HomebrewをUpdateしようとすると下記のエラーがでた。
|
brew update Error: Failure while executing: git checkout -q master |
対処方法
いちどgitをリセットしてやる
|
cd /usr/local git reset --hard FETCH_HEAD |
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0
AD:
MacのHomebrew自体のバージョンを上げようと思いupdateするとエラーでできませんでした。
|
$ sudo brew update Error: Failure while executing: git pull -q origin refs/heads/master:refs/remotes/origin/master |
解決方法
brewさん自体がすでに更新されている状態なので、updateするとpullしようとするとぶつかってしまうのが問題のようです。
なので、git fetchで最新を落として、resetでインデックス、ワーキングツリーをすべて変更しています。
|
$ cd /usr/local $ git fetch origin $ git reset --hard origin/master |
参考ページ
Twitter:
Warning: Undefined array key "Twitter" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Facebook: 0 | Google Plus:
Warning: Undefined array key "Google+" in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/plugins/sns-count-cache/sns-count-cache.php on line 2897
0 | Hatena: 0 | Pocket: 0 | Total: 0 | Feedly: 0