Loading

git patch

在git中format-patch 是一种将在离线服务器上的提交同步到可连接git服务器的方法。

  1. 在离线机器上的git repo 生成.patch 文件。
#最近1次提交
git format-patch -1 HEAD
# 最近n次提交
git format-patch -n HEAD --stdout > 0001-last-n-commits.patch
  1. 从离线机器将file.patch文件复制到可联网的机器的git repo。
  2. 同步patch。
git am < file.patch
posted @ 2024-01-04 22:23  lif323  阅读(16)  评论(0编辑  收藏  举报