git ssb

30+

cel / git-ssb-web



Tree: fdb413fd56c5862d6a510e6bb4ae186dc5bc1f7f

Files: fdb413fd56c5862d6a510e6bb4ae186dc5bc1f7f / lib / obj-msg-id.js

487 bytesRaw
1// get a id of a git-update message that includes a packfile that pushed the
2// given commit, or from which such a message may be reached by following
3// repoBranch links.
4module.exports = function (repo, commitId, cb) {
5 // TODO: get packfile contents
6 var msgsByObj = repo && repo._msgsByObject
7 var msg = msgsByObj && msgsByObj[commitId]
8 if (!msg) return cb()
9 // TODO: examine index file to see if object is in there
10 // but not mentioned in the message
11 cb(null, msg.key)
12}
13

Built with git-ssb-web