Question: Which command correctly creates a lightweight tag?

  1. `git tag v3.8.1`
  2. `git tag --light "v3.8.1"`
  3. `git tag v3.8.1 ?-annotate -m ""`
  4. `git tag -l v3.8.1`

Answer: The correct answer of the above question is Option A:`git tag v3.8.1`