|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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` }
- , { 'baptistdev-public' : 'https://github.com/baptistdev/elxr.git' }
-
-
-
-
-
- , { 'origin' : `${options.reposerver}/${options.username}/elxr.git` }
- , { 'origin-public' : `https://git.bbh.org.in/${options.username}/elxr.git` }
- , { 'origin-unc' : `//172.16.0.27/repos/${options.username}/elxr.git` }
-
- ]
-
- , 'push-remotes' : [
- { 'chess' : 'no-pushing' }
- , { 'baptistdev-public' : 'no-pushing' }
- , { 'origin-public' : 'no-pushing' }
- ]
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- })
|