There was an error while loading. Please reload this page.
maintainers
mkdir -p ~/.linuxbrew/bin git clone https://github.com/Linuxbrew/brew ~/.linuxbrew/Homebrew ln -s ../Homebrew/bin/brew ~/.linuxbrew/bin/ alias linuxbrew=~/.linuxbrew/bin/brew
brew install hub git config --global hub.protocol https mkdir -p $(linuxbrew --repo homebrew/core) cd $(linuxbrew --repo homebrew/core) hub clone Linuxbrew/homebrew-core . hub remote add homebrew hub fork linuxbrew tap linuxbrew/developer
Determine the first bottle updated in Homebrew that is not yet in Linuxbrew. Merge that commit into Linuxbrew/core.
cd $(linuxbrew --repo homebrew/core) git fetch homebrew git log --oneline master..homebrew/master | grep 'bottle\.$' | tail sha1=$(git log --oneline master..homebrew/master | grep 'bottle\.$' | tail -n1 | cut -d' ' -f1) linuxbrew merge-homebrew --core $sha1