Reputation: 1821
I have an option (a plugin?) called "Poll SCM" in Jenkins and I know what it does and how to use it. Please tell me what "SCM" stands for. Is it "Source Code Management", "Sync Code [something]"?
Thanks.
Upvotes: 38
Views: 44480
Reputation: 4378
SCM in Software engineering stands for Software Configuration Management
, see here for more details.
It also stands for Source Control Management
in some Continuous Integration tools like Jenkins
, please see the accepted answer.
Upvotes: 8
Reputation: 766
SCM = Source Control Management
From jenkin's tutorial
Section: Create your Pipeline project in Jenkins
Step 6: From the Definition field, choose the Pipeline script from SCM option. This option instructs Jenkins to obtain your Pipeline from Source Control Management (SCM), which will be your locally cloned Git repository.
Upvotes: 55