After completing a significant feature, a developer wants to mark the current state of the repository for future reference. Which Git feature would be most appropriate?

  • Tag
  • Branch
  • Commit
  • Stash
The correct option is Tag. Tags in Git are used to mark specific points in history as being important. This is commonly done to capture a release point or mark a significant version in the repository. Unlike branches, tags are generally not moved once created.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *