doufei2194 2011-02-28 15:37
浏览 427
已采纳

shell_exec和git pull

I was hoping someone could help, I have a PHP page which uses shell_exec to zip up a directory and run git pull to bring down recent repository changes.

$op = shell_exec("cd /home/user/git/$repo/$dir/; zip -r /home/user/archives/$dir.$datestamp.zip $dir; cd /home/user/git/$repo/$dir/; git pull");

The zip works fine. If I change git pull to for example git log or git status - within my shell_exec, this works also, and I can see the log file.

Just doesn't seem to like git pull.

I saw another similar post to this, but wasn't sure how it was achieved >> Shell_exec with git pull?

  • 写回答

1条回答 默认 最新

  • dongzhan1570 2011-02-28 20:25
    关注

    From your description in the comments it seems that the problem is that your apache user cannot write to the repository, which is clearly required when you use git pull. You have two courses of action:

    1. Setup up Apache to run the script as another user (e.g. using suEXEC either on a VirtualHost or via userdir)
    2. Change the permissions on your repository so the apache user can write to it

    You should think carefully about the security implications of either choice, but the second option is probably easiest. If you don't already have such a group, you can create it with:

    addgroup gitwriters
    

    ... and then add yourself and the Apache user to this group:

    adduser [yourusername] gitwriters
    adduser apache gitwriters
    

    Then you can follow the instructions in another question to change the permissions on the repository. To reiterate those with some slight variations:

    # Recursively, set the group ownership of every file and directory of your repository:
    chgrp -R gitwriters /path/to/your/repo
    
    # Recursively, make every file and directory of your repository readable and writable
    # by the group:
    chmod -R g+rw /path/to/your/repo
    
    # Recursively, set the setgid of every directory in the repository.  The setgid bit
    # on directories means that files created in the directory will have the same group
    # ownership as the directory.  
    find /path/to/your/repo -type d -print0 | xargs -0 chmod g+s
    

    Then hopefully your git pull should work.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题
  • ¥20 yolov5自定义Prune报错,如何解决?
  • ¥15 电磁场的matlab仿真