1
0
mirror of https://github.com/kepler155c/opus synced 2024-07-06 20:04:26 +00:00
opus/sys/apis/fs/gitfs.lua
kepler155c@gmail.com 558d271ae0 branch support
2017-05-19 20:55:19 -04:00

18 lines
379 B
Lua

local git = require('git')
local gitfs = { }
function gitfs.mount(dir, user, repo, branch)
if not user or not repo then
error('gitfs syntax: user, repo, [branch]')
end
local list = git.list(user, repo, branch)
for path, entry in pairs(list) do
local node = fs.mount(fs.combine(dir, path), 'urlfs', entry.url)
node.size = entry.size
end
end
return gitfs