Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Git 提交范围中的“..”和“...”有什么区别?
我在各种教程中看到了两种不同的提交范围语法:
git log A..B git log A...B
两者之间究竟有什么区别?
第一个是:包括所有到 B 的提交,排除所有到并包括 A。第二个:包括所有提交到是,排除所有到并包括共同祖先。请参阅“指定范围git help revisions”部分。
git help revisions
哎哟。
Git 提交范围中双点“..”和三点“...”的区别是什么?.
为什么它没有出现在我的各种搜索中仍然是个谜。