How to get rid of below error to get the commit history? sometimes it works not all the time
git log '--pretty=format:%ad - %s [%an]' v1.0.11...b1.0.12
fatal: ambiguous argument 'v1.0.11...b1.0.12': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'
Any help would be appreciated!
EDIT: After discussion in comments one of the tags wasn't local,
git fetch --tagsresolves this.Are you sure you don't mean
v1.0.11..b1.0.12with two dots (..) rather than three (...).Also is
b1.0.12a typo when you meantv1.0.12. I suspect this because error reportsunknown revision.The meaning of
..and...can be found ingit help rev-parse. Here's a snippet;