mirror of
https://github.com/documentationjs/documentation.git
synced 2026-02-01 14:53:07 +00:00
68 lines
1.5 KiB
JavaScript
68 lines
1.5 KiB
JavaScript
module.exports = {
|
|
master: {
|
|
'/my': {
|
|
repository: {
|
|
path: {
|
|
'.git': {
|
|
'HEAD': 'ref: refs/heads/master',
|
|
'config': '[remote "origin"]\n' +
|
|
'url = git@github.com:foo/bar.git\n' +
|
|
'fetch = +refs/heads/*:refs/remotes/origin/*',
|
|
refs: {
|
|
heads: {
|
|
master: 'this_is_the_sha'
|
|
}
|
|
}
|
|
},
|
|
'index.js': 'module.exports = 42;'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
detached: {
|
|
'/my': {
|
|
repository: {
|
|
path: {
|
|
'.git': {
|
|
'HEAD': 'e4cb2ffe677571d0503e659e4e64e01f45639c62',
|
|
'config': '[remote "origin"]\n' +
|
|
'url = git@github.com:foo/bar.git\n' +
|
|
'fetch = +refs/heads/*:refs/remotes/origin/*'
|
|
},
|
|
'index.js': 'module.exports = 42;'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
malformed: {
|
|
'/my': {
|
|
repository: {
|
|
path: {
|
|
'.git': {},
|
|
'index.js': 'module.exports = 42;'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
enterprise: {
|
|
'/my': {
|
|
repository: {
|
|
path: {
|
|
'.git': {
|
|
'HEAD': 'ref: refs/heads/master',
|
|
'config': '[remote "origin"]\n' +
|
|
'url = git@github.enterprise.com:foo/bar.git\n' +
|
|
'fetch = +refs/heads/*:refs/remotes/origin/*',
|
|
refs: {
|
|
heads: {
|
|
master: 'this_is_the_sha'
|
|
}
|
|
}
|
|
},
|
|
'index.js': 'module.exports = 42;'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|