Question: Which command will list tags with the 1.4.2 series?

  1. git tag 'v1.4.2'
  2. git tag -I 'v1.4.2.\*'
  3. git tag-list 'v1.4.2\*'
  4. git tag 'v1.4.2\*'

Answer: The correct answer of the above question is Option B:git tag -I 'v1.4.2.\*'