在Linux上运行hub命令
我在运行`./script/build`时遇到了错误。需要安装golang,版本应该是1.4以上。因为Ubuntu的仓库里的版本比较旧,所以需要使用其他人维护的版本。可以尝试使用 https://launchpad.net/~evarlast/+archive/ubuntu/golang1.5 这个链接。
安装golang
sudo add-apt-repository ppa:evarlast/golang1.5
sudo apt-get update
sudo apt-get install golang
输入hub命令
由于RubyGems中的hub命令速度较慢,建议使用这个替代方案。
将文件放置在路径下(本例中为/usr/local/bin)。
git clone https://github.com/github/hub.git
cd hub
./script/build
sudo cp hub /usr/local/bin/
使用化名
echo 'eval "$(hub alias -s)"' >> ~/.bash_profile
请点击这里查看更详细的内容:https://github.com/github/hub#commands