我疯狂简单的PHP脚本为git pull
<?php
$output = shell_exec("cd /var/www/domain.tld/html/test/ && git pull 2>&1");
echo "<pre>$output</pre>";
将它命名为git.php并将其命名为755
输出
error: cannot open .git/FETCH_HEAD: Permission denied
但是从终端尝试时
$ git pull
Already up-to-date.
我检查了目录所有权,我的用户是“精明”
drwxrwsr-x 4 savvy savvy 4096 Jul 13 05:40 test
和
中的文件$ ls -la test/
total 20
drwxrwsr-x 4 savvy savvy 4096 Jul 13 05:40 .
drwxr-xr-x 7 savvy savvy 4096 Jul 13 05:38 ..
drwxrwsr-x 8 savvy savvy 4096 Jul 13 05:41 .git
-rw-rwSr-- 1 savvy savvy 19 Jul 13 05:39 test.php
.git
$ ls -la .git/
total 60
drwxrwsr-x 8 savvy savvy 4096 Jul 13 05:41 .
drwxrwsr-x 4 savvy savvy 4096 Jul 13 05:40 ..
drwxrwsr-x 2 savvy savvy 4096 Jul 13 05:39 branches
-rw-rwSr-- 1 savvy savvy 268 Jul 13 05:39 config
-rw-rwSr-- 1 savvy savvy 73 Jul 13 05:39 description
-rw-rwSr-- 1 savvy savvy 97 Jul 13 05:41 FETCH_HEAD
-rw-rwSr-- 1 savvy savvy 23 Jul 13 05:39 HEAD
drwxrwsr-x 2 savvy savvy 4096 Jul 13 05:39 hooks
-rw-rwSr-- 1 savvy savvy 104 Jul 13 05:41 index
drwxrwsr-x 2 savvy savvy 4096 Jul 13 05:39 info
drwxrwsr-x 3 savvy savvy 4096 Jul 13 05:39 logs
drwxrwsr-x 4 savvy savvy 4096 Jul 13 05:39 objects
-rw-rwSr-- 1 savvy savvy 41 Jul 13 05:40 ORIG_HEAD
-rw-rwSr-- 1 savvy savvy 107 Jul 13 05:39 packed-refs
drwxrwsr-x 5 savvy savvy 4096 Jul 13 05:39 refs
的〜/ .ssh
drwx------ 2 savvy savvy 4096 Jul 13 04:56 .ssh
内
$ ls -la .ssh/
total 36
drwx------ 2 savvy savvy 4096 Jul 13 04:56 .
drwxr-xr-x 4 savvy savvy 4096 Jul 12 08:34 ..
-rw-r--r-- 1 savvy savvy 398 Jul 12 05:46 authorized_keys
-rw-rw-r-- 1 savvy savvy 59 Jul 11 10:10 config
-rw------- 1 savvy savvy 1679 Jul 11 07:44 id_rsa
-rw-rw-r-- 1 savvy savvy 398 Jul 12 05:21 id_rsa.pub
-rw-r--r-- 1 savvy savvy 1768 Jul 13 05:08 known_hosts
答案 0 :(得分:1)
我通过以下方式解决了这个问题
1- copy /home/savvy/.ssh到/ var / www /
# cp -R /home/savvy/.ssh /var/www/
2-给了www-data用户的/ var / www难治性
# chown -R www-data:www-data /var/www/
以www-data用户身份登录
$ su
Password:
# su -s /bin/bash www-data
4-将repo克隆到我的目录/var/www/domain.tld/html/test/
5-调用我已经创建的git.php文件domain.tld / git.php
结果
From bitbucket.org:repo/test
8e9f67c..185cd9e master -> origin/master
Updating 8e9f67c..185cd9e
Fast-forward
test.php | 1 +
1 file changed, 1 insertion(+)