You have a GitHub repository that contains multiple versions of an Azure Pipelines template… You need to ensure that you use a fixed version of the template. What should you use?
why most people say branch and not sha hash as the answer in google searches
Using git and github, usually you manage multiple versions of a similar item by putting them in separate branches. If you limit yourself to a particular commit (which is what you’re suggesting), then you can’t fix the template even for an error. Usually this is NOT what people want.
1 Like