Migrating from Subversion to Git how can I find a commit given a revision number?

后端 未结 2 1374
灰色年华
灰色年华 2021-02-14 00:23

Migrating from Subversion to Git using svn2git (which internally uses git-svn) I\'d like to know how I can find a specific revision commit.

It is quite common to have is

2条回答
  •  青春惊慌失措
    2021-02-14 00:47

    With Git it’s similar:

    Fixed in d8602bb9729ddb2f28e61028cc5981cb310231a2.
    

    Get the diff with:

    git show d8602bb9729ddb2f28e61028cc5981cb310231a2
    

提交回复
热议问题