首先创建密钥对,用于连接oschina
ssh-keygen
选择存放位置,输入密码
密钥对生成完成
将web目录改为apache用户所有。
sudo -u apache ssh-keygen -t rsa -C "email@email.com"
我这使用apache用户执行php脚本,执行上面命令创建一个密钥
会在/var/www/.ssh中看到相应的密钥对
然后在oschina的对应项目里,添加相应的公钥信息。http://git.oschina.net/username/projectname/deploy_keys/new
再在服务器上clone下来项目,会提示使用的密钥 和 密钥的密码,完成clone
<?php
//echo exec('whoami');
$www_folder = "/www/html" ;
//git仓库地址
$git_repo = "git@git.oschina.net:username/gitgitgit.git master:master";
//执行指令
echo shell_exec(" cd $www_folder && git pull $git_repo 2>&1 ");
Already up-to-date.
就是正常了。
——————————————————————————
貌似不用下面的步骤,看到Welcome to Git@OSC, Anonymous! 就正常能用。
需要把公钥放到 http://git.oschina.net/keys
测试:#sudo -u apache ssh -T git@git.oschina.net
会看到Welcome to Git@OSC, username!