开发者

Git, definition scope of branch

开发者 https://www.devze.com 2023-04-02 11:19 出处:网络
As the merger with the other 开发者_如何学Cbranches to define its borders in the overall chain of commits?

As the merger with the other 开发者_如何学Cbranches to define its borders in the overall chain of commits? For example, a branch of the dev branch branches fix-001, there are several commits, then the fix-001 joins the dev. After that, the dev wants to see what commits are fix-001.

Best regards!


If you didn't delete the branch fix-001, you can still look at it, merging doesn't destroy it in any way.

To do that, use either

gitk fix-001

or

git log fix-001

If you did delete it, then there is not much you can do. Except maybe trying to look at commit summaries.

0

精彩评论

暂无评论...
验证码 换一张
取 消