git中的目录级访问

时间:2015-04-28 13:12:03

标签: git

我在git中有一个存储库,它有许多子项目。就像这个

回购

var window: UIWindow? {
    get {
        // If realAppDelegate.window (of type UIWindow??) is not implemented
        // then return nil. Otherwise, return its value (of type UIWindow?)
        return realAppDelegate.window ?? nil
        // That code is equivalent (but more concise) to this kind of code:
        //   if let w = realAppDelegate.window { return w } else return nil
    }
    ...
}

现在,我想提供访问权限,使user1只能访问project1,user2只能访问project2,依此类推。

我已经浏览过这些链接,但这并不足以满足我的要求。

由于

姆兰

1 个答案:

答案 0 :(得分:1)

我认为git没有这个功能。您可以使用Gerrit(基于Web的代码审查和基于Git的项目的项目管理)。