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