GitSourceCodeManager.st
branchjv
changeset 4054 e1d270d3c382
parent 4053 7817fc8db06e
parent 4049 7cc69ea18451
child 4384 e28fcaaf93c7
equal deleted inserted replaced
4053:7817fc8db06e 4054:e1d270d3c382
    63 
    63 
    64 forgetDisabledModules
    64 forgetDisabledModules
    65     DisabledModules := nil.
    65     DisabledModules := nil.
    66 !
    66 !
    67 
    67 
       
    68 gitCommandSemaphore
       
    69     GitCommandSemaphore isNil ifTrue:[
       
    70         GitCommandSemaphore := (Semaphore new:10) name:'Concurrent GIT Commands'.    "/ at most 10 git activities concurrently
       
    71     ].
       
    72     ^ GitCommandSemaphore
       
    73 !
       
    74 
    68 initialize
    75 initialize
    69     | s |
    76     | s |
    70 
    77 
    71     GitCommandSemaphore := (Semaphore new:10) name:'Concurrent GIT Commands'.    "/ at most 10 git activities concurrently
    78     "/ GitCommandSemaphore := (Semaphore new:10) name:'Concurrent GIT Commands'.    "/ at most 10 git activities concurrently
    72     GitCommitOptions := ''.
    79     GitCommitOptions := ''.
    73     GitUpdateOptions := ''.
    80     GitUpdateOptions := ''.
    74     DisabledModules := nil.
    81     DisabledModules := nil.
    75     PerModuleRepositories isNil ifTrue:[
    82     PerModuleRepositories isNil ifTrue:[
    76         PerModuleRepositories := Dictionary new.
    83         PerModuleRepositories := Dictionary new.