Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

git - How do I get a log for submodule ref pointer?

My submodule ref pointer was moved back a few revisions and I would like to know who commited that change to our main repo, how can I do that? How can I get a log just for submodule reference? Because going through every commit searching for changed submodule reference is not an option.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can simply check the log for the gitlink representing your submodule in your parent repo:

git log -- yourSubmodule

No trailing '/' here: yoursubmodule is the name of the folder in which your submodule is checked out.
But it is also the name of the gitlink (special entry mode 160000) recording that submodule in the parent repo.

That will list only the commits in which yoursubmodule gitlink has changed.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...