How to get ‘git log –oneline’ without commit hash ?
git log --oneline
output is as below. I do not want commit has that comes in column 1.
f45e3825 something1
8aa18b11 something2
9e6c52aa something3
I am looking for output like below.
something1
something2
something3
1