博客框架 hexo,网页服务器 apache2
因为我的博客是放在云服务上的,然后又希望在GitHub上面同步,传统的办法是使用git把public里面的文件放到GitHub上面,然后手动将文件复制到云服务上,这就有一个问题,就是当文章删除的时候会导致删不掉,同时也很繁杂。
网上有的办法普遍是在云服务上面弄个git仓库,总之一堆心烦意乱的配置,于是我在想有没有更简单的办法
🤣还真有
只要本地仓库push到github,然后云服务器pull一下不就行了,直截了当
但是手动push然后pull确实也麻烦
python启动!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| import paramiko import os
with open("do.bat",'w',encoding='utf-8') as f: f.write("hexo clean && hexo g && hexo deploy") f.close()
os.system(".\\do.bat") print("本地处理完成")
hostname = '192.168.1.1' port = 22 username = 'root' password = '******' command = 'cd /var/www/blog/ && git pull origin main'
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(hostname, port, username, password)
stdin, stdout, stderr = ssh.exec_command(command) print("输出:", stdout.read().decode()) print("错误:", stderr.read().decode())
ssh.close() print("完成")
|
完工!