作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我是 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.
开始于:
--no-index
您应该能够在 git 存储库之外使用 git diff
而不会出现任何问题。
关于git - 如何从两个文件创建 git 补丁?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29383444/
我是一名优秀的程序员,十分优秀!