mirror of
https://github.com/documentationjs/documentation.git
synced 2026-02-01 14:53:07 +00:00
21 lines
458 B
JavaScript
21 lines
458 B
JavaScript
module.exports = {
|
|
'/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;'
|
|
}
|
|
}
|
|
}
|
|
};
|