In Azure Devops every-time we run a pipeline does it create a new commit or what exactly happens...?

345 views Asked by At

As I run a pipeline, it showed me this point

commit ID

How does this actually work? And is the the status update on existing source code commit or a new commit saved all the config of the running pipeline?

I tried to look at the MS docs but it wasn't clear for me.

1

There are 1 answers

1
Kirubel On

No. A pipeline run doesn't create a new commit. A commit comes from the repository. So anytime you restart the same pipeline it will use the same commit id unless there is a change on the repository.