12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- module.exports = ((name, options)=>{
-
- return {
- reposervers : [
- 'http://git.bbh'
- , 'https://git.bbh.org.in'
- , '//172.16.0.27/repos'
- , 'https://github.com'
- ]
-
-
-
- , remotes : [
-
- { 'chess' : `${options.reposerver}/chess/elxr.git` }
- , { 'public-github-baptistdev' : 'https://github.com/baptistdev/elxr.git' }
-
-
-
-
-
- , { 'origin' : `${options.reposerver}/${options.repouser}/elxr.git` }
- , { 'origin-public' : `https://git.bbh.org.in/${options.repouser}/elxr.git` }
- , { 'origin-unc' : `//172.16.0.27/repos/${options.repouser}/elxr.git` }
- ]
-
- , 'push-remotes' : [
- { 'chess' : 'no-pushing' }
- , { 'public-baptistdev' : 'no-pushing' }
- , { 'public-origin' : 'no-pushing' }
- ]
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- })
|