用shell写脚本 对比a b仓库的代码,并将a仓库所有新的改动提交至b仓库
时间: 2024-05-24 15:12:25 浏览: 35
dot-scripts:一些有用的 UnixLinux 脚本
#!/bin/bash
# 比较a和b仓库的代码
git fetch a
git fetch b
git diff a/master b/master > diff.patch
# 将a仓库新的改动提交至b仓库
git apply diff.patch
git add .
git commit -m "Merge changes from a repository"
git push b master
# 清理
rm diff.patch
阅读全文