git push的时候报Unable to find remote helper for 'https'的错误

  在ubuntu下使用git push代码到github上的时候报Unable to find remote helper for 'https'的错误。

  我的解决方法是重装git 1.7.7的版本。

  具体实现:

  sudo apt-get remove git-core

  wget http://git-core.googlecode.com/files/git-1.7.7.tar.gz

     sudo apt-get build-dep git-core

  tar xvzf git-1.7.7.tar.gz

  cd git-1.7.7/

  ./configure

  make 

  sudo make install 

  实现: 

  Remove the installed version

  Download the latest .tar

  Install all mandatory dependencies (maybe obsolete, as you had it already running)

  Un-tar it

  Configure the make-file 

  Install it 

    解决。

posted on 2012-08-09 14:59  TonyCoolZhu  阅读(2580)  评论(0编辑  收藏  举报

导航