父文件夹和子文件夹中有多个 git 个文件夹
multiple git folders in parent and chidren folders
我在父文件夹和每个子文件夹中有 .git
个文件夹。这是预期的吗?
我可以从子文件夹中删除 .git
文件夹,只保留父文件夹中的一个吗?
我没有看到父文件夹下的分支
git branch -a
returns 空白
我确实在其中一个子文件夹中看到了它们。
如何清理它并查看父文件夹中的所有本地和远程分支?
我可以只删除父文件夹中的所有 .git 文件夹和 git init
吗?那我会看到树枝吗?
I have .git folders in parent and every children folders. Is that expected ?
否:这意味着在每个文件夹中执行了一个git init .
。
Can I just delete all the .git folders and git init inside the parent folder? Would I then see the branches?
您不会在 git init .
之后看到任何分支,您仍然需要执行 git add .
和 git commit
才能看到 一个 分支(master
或main
)
我在父文件夹和每个子文件夹中有 .git
个文件夹。这是预期的吗?
我可以从子文件夹中删除 .git
文件夹,只保留父文件夹中的一个吗?
我没有看到父文件夹下的分支
git branch -a
returns 空白
我确实在其中一个子文件夹中看到了它们。
如何清理它并查看父文件夹中的所有本地和远程分支?
我可以只删除父文件夹中的所有 .git 文件夹和 git init
吗?那我会看到树枝吗?
I have .git folders in parent and every children folders. Is that expected ?
否:这意味着在每个文件夹中执行了一个git init .
。
Can I just delete all the .git folders and git init inside the parent folder? Would I then see the branches?
您不会在 git init .
之后看到任何分支,您仍然需要执行 git add .
和 git commit
才能看到 一个 分支(master
或main
)