- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我最近发现了 git worktree
命令:
The new working directory is linked to the current repository, sharing everything except working directory specific files such as HEAD, index, etc.
但是文档也指出了
… the support for submodules is incomplete. It is NOT recommended to make multiple checkouts of a superproject.
没有进一步解释哪里出了问题。
有人可以告诉我预期的问题吗?例如,如果我将以这种方式生成的单独工作树仅用于不影响子模块的更改,我会没事吗?
最佳答案
Commit a83a66a对此很清楚:
git-submodule.sh
expects$GIT_DIR/config
to be per-worktree, at least for thesubmodule.* part
.
Here I think we have two options:
- either update
config.c
to also read$GIT_DIR/config.worktree
(which is per worktree) in addition to$GIT_DIR/config
(shared) and store worktree-specific vars in the new place,- or update
git-submodule.sh
to read/writesubmodule.*
directly from$GIT_DIR/config.submodule
(per worktree).These take time to address properly. Meanwhile, make a note to the user that they should not use multiple worktrees in submodule context.
更一般地说,将这些子模块放在哪里?
There are a couple options:
- You may want to keep
$SUB
repos elsewhere (perhaps in a central place) outside$SUPER
. This is also true for nested submodules where a superproject may be a submodule of another superproject.- You may want to keep all
$SUB
repos in$SUPER/modules
(or some other place in$SUPER
)- We could even push it further and merge all
$SUB
repos into$SUPER
instead of storing them separately. But that would at least require ref namespace enabled.
此提交是对 commit df56607 的回答.
从 git 用户的角度来看,这意味着 git submodule update --init --recursive
不确切地知道在哪里检查子模块。
它们是在所有工作树中复制,还是集中在某个地方?这尚未正式指定。
一年后(以及 git 2.9),clacke添加 in the comments
the confusion has been resolved, but not in an optimal manner.
Submodules work fine now as far as I can see, but each worktree has its own set of submodule repos (undermotherrepo.git/worktree/<worktreename>/modules/<submodule>
), so if you have a submodule that's big, you are facing some serious disk usage.
处理子树中子模块的 Git 别名:
别名git wtas
期望 git wta
是全局定义的,或者至少是针对所有涉及的 repo 协议(protocol)。不包括保修。如果您的路径名称中有空格,您最喜欢的宠物可能会感染痛苦的病毒。
它希望您的存储库中的结构类似于带有子模块的非裸存储库中的结构,因此如果您有一个裸存储库,则必须模仿该设置。具有名称(不是路径)foo
的子模块进去<your-.git-directory>/modules/foo
(不是 .../foo.git
)。如果 repo 中不存在某些模块,它不会崩溃,它只是跳过它。
还有改进的余地。它不处理子模块中的子模块,它只向下一层。它可能只改变子模块git wta
调用git wtas
打电话,但我还没有验证这一点。
-- clacke
另见 git worktree move
(使用 Git 2.17+,2018 年第 2 季度)。
实际上,在 Git 2.21(2019 年第一季度)之前,“git worktree remove
” 和 “git worktree move
” 在涉及子模块时拒绝工作。
这已被放宽以忽略未初始化的子模块。
参见 commit 00a6d4d (2019 年 1 月 5 日)作者:Nguyễn Thái Ngọc Duy ( pclouds
) .
(由 Junio C Hamano -- gitster
-- merge 于 commit 726f89c ,2019 年 1 月 18 日)
worktree
: allow to (re)move worktrees with uninitialized submodulesUninitialized submodules have nothing valuable for us to be worried about. They are just SHA-1.
Let "worktree remove
" and "worktree move
" continue in this case so that people can still use multiple worktrees on repos with optional submodules that are never populated, likesha1collisiondetection
ingit.git
when checked out bydoc-diff
script.Note that for "
worktree remove
", it is possible that a user initializes a submodule (*
), makes some commits (but not push), then deinitializes it.
At that point, the submodule is unpopulated, but the precious new commits are still in:$GIT_COMMON_DIR/worktrees/<worktree>/modules/<submodule>
directory and we should not allow removing the worktree or we lose those commits forever.
The new directory check is added to prevent this.(
*
) yes they are screwed anyway by doing this since "git submodule
" would addsubmodule.*
in$GIT_COMMON_DIR/config
, which is shared across multiple worktrees.
But it does not mean we let them be screwed even more.
在 Git 2.25(2020 年第一季度)之前,如果你有 submodule.recurse
配置选项集,发出 git worktree add
在具有初始化子模块的 super 项目中会失败。
参见 commit 4782cf2ab6 (2019 年 10 月 27 日)Philippe Blain ( phil-blain
) .
(由 Junio C Hamano -- gitster
-- merge 于 commit 726f89c ,2019 年 12 月 1 日)
worktree
: teach "add
" to ignoresubmodule.recurse
config"
worktree add
" internally calls "reset --hard
", but ifsubmodule.recurse
is set,reset
tries to recurse into initialized submodules, which makesstart_command
try to cd into non-existing submodule paths and die.Fix that by making sure that the call to
reset
in "worktree add
" does not recurse.
早期版本的解决方法是暂时停用配置:
git -c submodule.recurse=0 worktree add ...
Git 2.26(2020 年第 2 季度)之前,发布 git checkout --recurse-submodules
(或 reset
或 read-tree
)在具有初始化子模块的 repo 的链接工作树中会错误地移动 main 工作树的 git 存储库中的子模块 HEAD,并破坏.git
链接工作树中子模块工作目录中的 .gitfile:
参见 commit a9472afb63 (2020 年 1 月 21 日)Philippe Blain ( phil-blain
) .
(由 Junio C Hamano -- gitster
-- merge 于 commit ff5134b2,2020 年 1 月 5 日)
submodule.c
: useget_git_dir()
instead ofget_git_common_dir()
Ever since df56607 (git-common-dir: make "
modules/
" per-working-directory directory, 2014-11-30), submodules in linked worktrees are cloned to$GIT_DIR/modules
, i.e.$GIT_COMMON_DIR/worktrees/<name>/modules
.However, this convention was not followed when the worktree updater commands
checkout
,reset
andread-tree
learned to recurse into submodules. Specifically,submodule.c::submodule_move_head
, introduced in 6e3c159 (update submodules: add submodule_move_head, 2017-03-14) andsubmodule.c::submodule_unset_core_worktree
, (re)introduced in 898c2e6 (submodule: unset core.worktree if no working tree is present, 2018-12-14) useget_git_common_dir()
instead ofget_git_dir()
to get the path of the submodule repository.This means that, for example, '
git checkout --recurse-submodules <branch>
' in a linked worktree will correctly checkout<branch>
, detach the submodule's HEAD at the commit recorded in<branch>
and update the submodule working tree, but the submodule HEAD that will be moved is the one in$GIT_COMMON_DIR/modules/<name>/
, i.e. the submodule repository of the main superproject working tree. It will also rewrite the gitfile in the submodule working tree of the linked worktree to point to$GIT_COMMON_DIR/modules/<name>/
. This leads to an incorrect (and confusing!) state in the submodule working tree of the main superproject worktree.Additionally, if switching to a commit where the submodule is not present,
submodule_unset_core_worktree
will be called and will incorrectly remove 'core.wortree
' from the config file of the submodule in the main superproject worktree,$GIT_COMMON_DIR/modules/<name>/config
.Fix this by constructing the path to the submodule repository using
get_git_dir()
in bothsubmodule_move_head
andsubmodule_unset_core_worktree
.
关于git - 将 git worktree 与 git 子模块一起使用时出了什么问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31871888/
我有这个 html 代码: HELLO WORLD! X V HELLO WORLD! X V 我想按 X(类关闭)将父 div 的高度更改为 20px 并显示 V(类打开),但在每个 d
在会计应用程序的许多不同实现中,有两种主要的数据库设计方法来保存日志和分类帐数据。 只保留 Journal 信息,然后 Ledger 只是 Journal 的一个 View (因为 journal 总
我想在另一个子里面有一个子, sub a { sub b { } } 我想为每次调用 sub b 创建一个新的 sub a 实例。有没有办法在 Perl 中做到这一点? 当我运行上面的
我有一些代码正在查找重复项并突出显示单元格: Private Sub cmdDups_Click() Dim Rng As Range Dim cel As Range Set Rng = ThisW
可能有一个简单的解决方案,但我很难过。 我有一个包含一个 ID 字段的主表。在两个可能的字段中有一个具有该 ID 的子表。想象一个由选手 A 和选手 B 组成的 double 队。Master 表将有
假设我有一个包含对象的数组: [ { "id": "5a97e047f826a0111b754beb", "name": "Hogwarts", "parentId": "
我正在尝试对 MySQL 数据库表执行一对父/子模型的批量插入,但似乎无法使用标准的 ActiveRecord 功能来完成。所以,我尝试了 activerecord-import gem,但它也不支持
我有一个带有多个子类的父抽象类。最终,我希望通过 GUI 中的进度条显示子类中完成的进度。 我目前所做的,我意识到这是行不通的,是在父类中声明为每个子类将覆盖的虚拟方法的事件方法定义。所以像: pub
是否可以通过键数组在对象中设置变量?例如我有这个对象: var obj = {'outer': {'inner': 'value'} }; 并希望设置由键数组选择的值: var keys = ['ou
我有一个名为 companies 的 MySQL 表,如下所示: +---------+-----------+-----------+ | id_comp | comp_name | id_pare
我正在尝试使用 sublime text 在 sublime text 上的 ionic 上打开我的第一个应用程序。它给了我一个“找不到命令”的错误。如何修复? 我试过这些命令: sudo rm -r
不好意思问,但我正在使用 webapp2,我正在设计一个解决方案,以便更容易定义路由 based on this google webapp2 route function .但这完全取决于能够在子级
我有代表树的数字字符串(我不知道是否有官方名称): 012323301212 上面的例子代表了 2 棵树。根用 0 表示。根的直接子代为“1”,“1”的直接子代为“2”,依此类推。我需要将它们分组到由
是否可以在当前 Activity 之上添加 Activity 。例如,假设我单击一个按钮,然后它将第二个 Activity 添加到当前 Activity 。而第二个 Activity 只覆盖了我当前
我很难思考如何为子资源建模。 以作者的书籍为例。你可以有 N 本书,每本书只有一位作者。 /books GET /books POST /books/id PUT /books/id DELETE 到
有人可以向我解释以下内容(python 2.7) 来自已解析文件的两个字符串数字: '410.9''410.9 '(注意尾随空格) A_LIST = ['410.9 '] '410.9' in '41
背景 在 PowerShell 中构建 hash table 是很常见的通过特定属性快速访问对象,例如以 LastName 为基础建立索引: $List = ConvertFrom-Csv @' I
我真的很难弄清楚如何调用嵌套 Polymer Web 组件的函数。 这是标记: rise-distribution组件有 canPlay我想从 rise-playlist
我写了一个小工具转储(以 dot 格式)一个项目的依赖关系图,其中所有位于同一目录中的文件都聚集在一个集群中。当我尝试生成包含相应图形的 pdf 时,dot开始哭: 命令 dot -Tpdf trim
给定一个 CODE ref,是否可以: 访问该 CODE ref 的解析树 通过指定 CODE ref 的解析树来创建一个新的 CODE ref,该解析树可以包含在 1 中返回的解析树的元素 通常我们
我是一名优秀的程序员,十分优秀!