I am trying to get the list of all commit ids after/since a certain commit id, is there a git command..?
git log --pretty=format:"%H" --since=2014-05-04 would print all the commit-ids since 2014-05-04, similarly is there a command that could print all the commit ids after a certain commit-id?
Example:
123456daskkl9
56787skjskdk8
adkasjdka6788
dkajsdklja76678
jkajskldal677889
If I try "git log --pretty=format:"%H" adkasjdka6788"
The out put is
adkasjdka6788
dkajsdklja76678
jkajskldal677889
Instead, what I am looking for is a command that would get the below output
123456daskkl9
56787skjskdk8