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
641 views
in Technique[技术] by (71.8m points)

git - Get information about a SHA-1 commit object?

I searched for a topic of interest in a commit log:

$ git log --pretty=oneline | grep -i ...

$SHA1 < ... commit message ... >

I now have a SHA1, and I want to know information about the files affecting that SHA1 and maybe later diff them with their parent. How can I get this done?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

git show <SHA1> will show the commit date, author, parent, and diff of files that changed from parent commit.


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

...