I have a project which has long history. I want to show the first commit on git.
How do I do this?
You can just reverse your log and just head it for the first result.
git log --pretty=oneline --reverse | head -1