What is a tag in Git?
- A reference to a specific commit
- A branch in Git
- A merge conflict
- A file in the working directory
In Git, a tag is a reference to a specific commit. It is often used to mark a specific point in history, such as a release or a stable version. Tags are immutable and don't change with new commits.
Loading...
Related Quiz
- During a critical hotfix, a developer has uncommitted changes that are not ready for commit. How should they use Git stash to handle this situation?
- In the context of Git, what does the term 'merge conflict' specifically refer to?
- What is the purpose of the .gitignore file in a Git repository?
- In Agile development, Git's ________ helps in maintaining a sustainable pace of development by isolating work in progress.
- To ignore file changes in your working directory, you should update the _________ file in your Git repository.