gpt4 book ai didi

git - 如何从两个文件创建 git 补丁?

转载 作者:太空狗 更新时间:2023-10-29 14:00:01 25 4
gpt4 key购买 nike

我是 git 的新手,我只是想知道是否可以从两个不同的文件创建一个 git 补丁。没有 git repo,场景是我有一个文件并且我修改了它,现在我想创建一个补丁来区分这两个文件。任何指针?还是我应该继续创建一个存储库,然后修改文件,然后提交更改?

最佳答案

查看 git diff man page ,你可以试试:

git diff --no-index --patch 

与:

git diff --no-index [--options] [--] [<path>…]

This form is to compare the given two paths on the filesystem.
You can omit the --no-index option when running the command in a working tree controlled by Git and at least one of the paths points outside the working tree, or when running the command outside a working tree controlled by Git.

开始于:

  • --补丁是默认选项
  • 在 Git 控制的工作树之外运行命令时可以省略 --no-index

您应该能够在 git 存储库之外使用 git diff 而不会出现任何问题。

关于git - 如何从两个文件创建 git 补丁?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29383444/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com