创建SSH Keys
ssh-keygen -t rsa -C "xxxxx@xxxxx.com" #邮箱为你在OS上的登录邮箱。三次回车,这里将生成标题
cat ~/.ssh/id_rsa.pub #key 内容
在http://git.oschina.net/profile/sshkeys这里添加然后回到ssh 下继续
ssh -T git@git.oschina.net 返回welcome就正确了
安装git
去官网下载git 压缩包
wget https://codeload.github.com/git/git/zip/master
unzip git-master.zip
cd git-master
make prefix=/usr/local/git all
sudo make prefix=/usr/local/git install
把编译安装的git路径放到环境变量里,让它替换"/usr/bin"下的git。为此我们可以修改“/etc/profile”文件(或者/etc/bashrc文件)。
sudo vim /etc/profile
然后在文件的最后一行,添加下面的内容,然后保存退出。
export PATH=/usr/local/git/bin:$PATH
使用source命令应用修改。
source /etc/profile
http://git.oschina.net/oschina/git-osc/wikis/%E5%B8%AE%E5%8A%A9#继续阅读