2017-04-05 11 views
0

.rbファイル(cassandra.rb、cassandra @ 2.1.rb、[email protected]の一部を、Macシステムの/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/から削除しました。これらの.rbファイルを元に戻したいと思います。
私はbrew upgradeが私にそれらの削除された.rbファイルを返すと思っていました。しかし、まだ失われています。それらの.rbファイルは私がパッケージをインストールするために重要です。
brew install cassandra
ホームブリューを元の状態に戻すにはどうすればいいですか?

Updating Homebrew... 
Error: No available formula with the name "cassandra" 
==> Searching for a previously deleted formula... 
cassandra was deleted from homebrew/core in commit d20fe73: 
    cassandra: update 3.10_1 bottle. 

To show the formula before removal run: 
    git -C "$(brew --repo homebrew/core)" show d20fe73^:Formula/cassandra.rb 

If you still use this formula consider creating your own tap: 
    http://docs.brew.sh/How-to-Create-and-Maintain-a-Tap.html 

を与える、私は解決策を必要としてください"これら.RBのファイルを取り戻すためにどのように?"または"cassandraをインストールする他の方法"

答えて

0

を削除したファイルのすべてを戻すには、このコマンドを試してみてください。
注:このコマンドは$(brew --repo homebrew/core)

cd $(brew --repo homebrew/core) && git reset --hard origin/master 

内のすべての変更を元に戻します自作は、内部的にはgitを使用するため、いくつかの問題を修復するためのgitコマンドを使用します。

関連する問題