homebrew -update 失敗

 $ brew update
 error: The following untracked working tree files would be overwritten by merge:
	Library/Formula/autojump.rb
 Please move or remove them before you can merge.
 Updating 6cd5476..def4bd8
 Aborting
 Error: Failed while executing git pull  origin refs/heads/master:refs/remotes/origin/master

アップデートしようとしたらエラーが.以下を参考にしたところ,解決したが.
http://d.hatena.ne.jp/con_mame/

cd `brew --prefix`
git remote add origin https://github.com/mxcl/homebrew.git  #いらないらしいが実行した
git fetch origin                                                         
git reset --hard origin/master
brew update