search

Home  >  Q&A  >  body text

github - git pushes local files to the root directory of the linux server website?

I am learning to write a website. js cs htmlAfter writing it, it takes a long code to push it to the server every time using ssh. How to push the local website files to the remote server using git command (ip 1.1.1.1) Under the root directory of the website /home/www (the github library and local library of web page files have been built).
OS:
Local: Ubuntu 14.04
Server: Centos 6.5

仅有的幸福仅有的幸福2851 days ago878

reply all(2)I'll reply

  • ringa_lee

    ringa_lee2017-05-02 09:28:19

    Git also transfers your files to the server through ssh, why not use ssh directly?

    scp -r somefiles username@1.1.1.1:/home/www/ 
    

    Improve efficiency a little more, incremental update:

    rsync -avzPe ssh somefiles username@1.1.1.1:/home/www/
    

    If you only want to use git, you have to modify post-update.sample under hooks in the .git directory in your git warehouse on the server.
    Add a line of git pull and name it post-update and give it execution permissions (chmod +x post-update).

    reply
    0
  • ringa_lee

    ringa_lee2017-05-02 09:28:19

    There is a hook file in git, which can realize automatic deployment. You can search Baidu and Google for the specific usage. It can automatically deploy the program you uploaded from git to the folder you specify

    reply
    0
  • Cancelreply