How do you list all tags in a Git repository?
How do you list all tags in a Git repository? a) git tags b) git tag –list c) git tag -a d) git list-tags Answer: b) git tag –list Explanation: The git tag –list command lists all tags in the repository. Tags are typically used to mark specific points in the repository’s history, such as […]
How do you list all tags in a Git repository? Read More »