D | hosts.js | 10 sshtemplate: ({ domain, user, project, committish }) => property 11 `git@${domain}:${user}/${project}.git${maybeJoin('#', committish)}`, 12 sshurltemplate: ({ domain, user, project, committish }) => property 13 `git+ssh://git@${domain}/${user}/${project}.git${maybeJoin('#', committish)}`, 14 edittemplate: ({ domain, user, project, committish, editpath, path }) => property 15 …`https://${domain}/${user}/${project}${maybeJoin('/', editpath, '/', maybeEncode(committish || 'HE… 16 browsetemplate: ({ domain, user, project, committish, treepath }) => property 17 `https://${domain}/${user}/${project}${maybeJoin('/', treepath, '/', maybeEncode(committish))}`, 18 …browsetreetemplate: ({ domain, user, project, committish, treepath, path, fragment, hashformat }) … property 19 …`https://${domain}/${user}/${project}/${treepath}/${maybeEncode(committish || 'HEAD')}/${path}${ma… [all …]
|