本文共 717 字,大约阅读时间需要 2 分钟。
嘛,就是将服务器上的网站和本地同步。
方法1首先是上传服务器上的网站到github仓库git initgit add .git commit -m ''关联远程仓库,先去github上新建一个,new repositorygit remote add origin 你的远程库地址同步 合并git pull --rebase origin master推送git push -u origin master克隆git clone git@github.com:jaxma/pig.git pigssh的问题
查看有没有id_dsa.pubcd ~/.ssh
没有的话
ssh-keygen -t rsa -C "your_email@youremail.com"
比如我的
git@github.com:jaxma
cat ~/.ssh/id_rsa.pub
复制公钥
到SSH and GPG keys里添加
方法2
服务器git仓库服务器仓库就相当于中转站,只要用git remote add origin命令推送过后,本地仓库和服务器要同步的文件夹都可以进行push、pull操作hook 本地push的同时让服务器更新文件方法3
用github的webhook如果有宝塔的话用宝塔的webhook更新:
克隆时端口不是22的问题加ssh://例如git clone ssh://git@ip:端口/home/git/xx.git权限
chown -R root:root pig.git/转载于:https://blog.51cto.com/1105190775/2317184