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.
我有一个任务,我应该根据在分支(开发、功能-X)中创建的所有更改生成更改日志,然后合并到 master 中,并标记到发布分支中。
请注意,feature-X 总是从develop 分支出来,并合并回develop,最后将develop 合并到master。
我试过了:
git diff HEAD..<release-branch> git log <a-know-revision>..HEAD
但我认为这些都不适合我的情况