- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在与一个由约 10 名开发人员组成的团队合作开发一个包含以下项目的私有(private) gitlab 存储库:
除了 Misc 之外,每一个都有自己的 Maven 依赖项和包含在其特定文件夹中的单元测试。
我们正在使用 git-flow
,所以所有的分支都将在某一时刻与一个 develop
分支 merge 。
问题:
We are currently only selling the Client & Interface with source and would like to grant our clients access to only these (sub-)projects, including their history, while being able to easily push updates and also using gitlab's
issues
functionality.
我的想法:
git submodules
,但是这个解决方案似乎不能完美地用于 private 仓库。 (如果有的话——已经阅读了很多关于无效路径的问题)Client
和Interface
的 super 干净的分支,我可以添加另一个新的remote
存储库并简单地推送这两个分支给它。这个解决方案的问题是,我们的开发人员缺乏经验,一次肮脏的推送或来自 develop
分支的一次推送基本上会使整个想法变得无用。风险太高。持续集成
会在不同的 repo 中运行,而且我们自己的问题也会在那里被跟踪。由于这是一个非常具体的设置和计划,我会对您解决此类情况的想法感兴趣。感谢您的宝贵时间。
最佳答案
如果找到更优雅的解决方案或者我们遇到问题,我会更新这篇文章。
此解决方案还会发布您的项目的 git 历史记录。根据您的团队事先工作的干净程度,您可以将其过滤掉:Git Documentation on how to do this .您应该在清洁分支后执行此步骤。
这个解决方案背后的想法是......
确保您有另一个备份并彻底测试它。我们在某些时候使用强制命令。这在 OUR 存储库上完美运行,但可能会导致我尚未意识到的副作用。如果您遇到它们,请告诉我,以便我更新此条目。
Steps to perform on
private local repository
:
# Assure we are on the latest stable state within our main repo
git checkout <CURRENT_STATE>
# Create a new deployment branch from HEAD
git branch <DEPLOYMENT_BRANCH> HEAD
# Enter the new branch
git checkout <DEPLOYMENT_BRANCH>
[选项 1]:如果您打算删除目录的路径结构并将所有文件部署到新存储库的根目录中,请使用以下策略
# Filter every comment outside of this subdirectory (execute from root directory of repo)
git filter-branch -f --subdirectory-filter <DIRECTORY_PATH> -- <DEPLOYMENT_BRANCH>
[选项 2]:过滤并保留目录树
##
# Force filter-branch using the tree-filter (keeps the
# directory-structure) while deleting all files outside
# this directory (Check if you are on <DEPLOYMENT_BRANCH>
# first). Folders are kept, but since Git does not push
# empty folders this is no problem
git filter-branch --tree-filter -f \
'find . -path <DIRECTORY_PATH> -prune -o -type f -print0 | xargs -0 rm -f' \
--prune-empty HEAD
我们想添加 master
分行.gitignore
文件。
# Take master .gitignore and add it to the branch
git checkout master -- .gitignore
您还应该更新它以忽略所有其他目录,但您的 <DIRECTORY_PATH>
:
##
# In .gitignore:
# Ignore everything:
*
# Except for these directories:
!path/
!path/*/
!.gitignore
暂存并提交这些更改:
git add .gitignore
git commit -m "Add .gitignore"
Inform your fellow devs to track the new branch within their
private local repositories
:
##
# If you would pull this branch, Git would attempt a merge it into your current HEAD.
# Do NOT pull! Instead start tracking the remote branch
git checkout --track origin/<DEPLOYMENT_BRANCH>
Steps to perform on new
destination / deployment repository
克隆或创建 destination / deployment repository
.在里面为我们的 private local repository
添加一个 Remote 并将分支 pull/merge 到主分支中:
# Add remote to local private repo
git remote add local <PATH/TO/PRIVATE/REPO/.git>
git checkout master
[选项 1]:将更改直接 pull 并 merge 到 master
# Pull changes from private repo and allow unrelated histories
git pull local <DEPLOYMENT_BRANCH> --allow-unrelated-histories
[选项 2]:在没有即时 merge 的情况下跟踪分支
# Track branches for more granular control
git checkout --track local/<DEPLOYMENT_BRANCH>
Deployment:
# Deploy option 1: (For option 2 simply push your tracked branches)
git push origin master
关于git - 发布私有(private) git 仓库的特定路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50918212/
据我所知,在 C# 中,所有字段默认都是私有(private)的,如果没有另外标记的话。 class Foo { private string bar; } class Foo { strin
这个问题在这里已经有了答案: Why is it allowed to access Java private fields via reflection? (7 个答案) 关闭 6 年前。 使用反
在 C#(和许多其他语言)中,访问相同类型的其他实例的私有(private)字段是完全合法的。例如: public class Foo { private bool aBool; pu
使用私有(private)方法通过将一些决策点重构为单独的方法来降低 CC 会降低实际方法的 CC 并易于阅读,但不会减少在测试中获得完整分支覆盖的工作量。 这合理吗?你有什么现场经验? 最佳答案 好
在下面的例子中,模块outer有一个私有(private)类型Private和一个私有(private)内部模块inner。 inner 能够访问Private(因为子模块可以访问其父级的私有(pri
class Person def one @var = 99 self.two end private def two p @var end end p=P
我在 Azure 中创建了 VNET。我放入了一个子集 Azure Private Link,它在 VNET 之外和另一台虚拟机中调用 Azure Function。 当我尝试通过专用 IP 调用专用
我在 Azure 中创建了 VNET。我放入了一个子集 Azure Private Link,它在 VNET 之外和另一台虚拟机中调用 Azure Function。 当我尝试通过专用 IP 调用专用
我正在尝试获得良好的 Ruby 编码风格。为防止意外调用具有相同名称的局部变量,我总是在适当的地方使用 self.。但是现在我偶然发现了这个: class MyClass "method" a
今天遇到一个案例类构造函数的奇怪问题。我想将构造函数设为私有(private),看来这不是问题。所以我已经在我的一个项目中尝试过它并且它有效。但在另一个项目中,我可以调用私有(private)构造函数
我想坚持使用记录,并且不想返回对象。所以我想知道是否可以将记录的字段设置为私有(private)?或者创建记录的私有(private)成员。其他具体类型(例如可区分联合)怎么样? 或者,这个要求是否违
我正在通过 Flickr API 进行经过身份验证的调用来访问照片。但我只得到我的公开照片,而没有任何私有(private)照片。 下面给出的是我正在使用的代码, Flickr f; Request
这两个类的行为不同;原因似乎与使用 private[this] 声明而不是 private 有关。有人可以解释一下为什么吗? 私有(private): class Person( private
在 private 中的 1000 秒 private 之后,我想到可能不需要它 public class Outer { private static class Inner { // yo
我有以下代码: class C { private enum E { // ... } } private extension C { func f(e: E)
OOP 语言中是否有object-private 的概念??我的意思是比经典的私有(private)访问限制更多? Private (or class-private) restricts the a
swift 3.0 我知道fileprivate访问级别修饰符将函数/属性的使用限制在声明它的源文件和 private - 仅限于声明的词法范围。但似乎这条规则不适用于扩展。例如。此代码有效: cla
即将推出的 Delphi 版本中启用该功能的功能怎么样? 也许它可能是一个编译器开关,促进所有 ** private **s to ** strict private **小号。 ... 或者它可能是
我可以通过将函数放入类的私有(private)扩展中来创建私有(private)函数,而不是通过不断调用 private func functionName(){} 来创建新的私有(private)函
部署专用端点并需要专用 IP 地址作为输出,但似乎无法正确获取值查询。下面的结果是“模板输出'主机名'无效:语言表达式属性|'privateIPAddress'具有无效的数组索引..(代码:Deplo
我是一名优秀的程序员,十分优秀!