HOTSPOT - You are finalizing a release in GitHub. You need to apply the following labels to the release: - Name - Email - Release v3.0 - Release date How should...


Microsoft AZ-400 Exam

Questions Number: 413 out of 535 Questions
77.20%

Question 413
HOTSPOT -
You are finalizing a release in GitHub.
You need to apply the following labels to the release:
- Name
- Email
- Release v3.0
- Release date
How should you complete the git command? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
AZ-400_413Q.png related to the Microsoft AZ-400 Exam



Box 1; tag -
Tagging. Like most VCSs, Git has the ability to tag specific points in a repository's history as being important. Typically, people use this functionality to mark release points (v1.0, v2.0 and so on).
Box 2: -a -
Creating an annotated tag in Git is simple. The easiest way is to specify -a when you run the tag command:
Example:
$ git tag -a v1.4 -m "my version 1.4"
Box 3: -m -
Reference:
https://git-scm.com/book/en/v2/Git-Basics-Tagging





Previous Questions Next Questions