我在一个目录中创建了 2 git 个存储库。现在我想摆脱其中一个。我该怎么做?
I have made 2 git repositores in one directory. Now I want to get rid of one of them. How do I go about that?
这些是我用来在 1 个文件夹中创建 2 个存储库的命令。
git init .
mv .git .gitone
git init .
mv .git .gittwo
现在我的文件夹结构看起来像
.gitone
.gittwo
all_other_files
.gitignore
我想删除第二个存储库,使我的新文件夹结构看起来像这样
.git
all_other_files
.gitignore
我对如何进行这件事有点困惑。我在两个存储库中都有等效的代码和提交。任何帮助将不胜感激。
纯粹从shell的角度来看:
rm -Rf .gittwo
mv .gitone .git
# Check with:
git status
git log
但是在一个文件夹中有两个存储库是不寻常的。
任何 git 命令都必须指定其 --git-dir
(.gitone
或 .gittwo
)
这些是我用来在 1 个文件夹中创建 2 个存储库的命令。
git init .
mv .git .gitone
git init .
mv .git .gittwo
现在我的文件夹结构看起来像
.gitone
.gittwo
all_other_files
.gitignore
我想删除第二个存储库,使我的新文件夹结构看起来像这样
.git
all_other_files
.gitignore
我对如何进行这件事有点困惑。我在两个存储库中都有等效的代码和提交。任何帮助将不胜感激。
纯粹从shell的角度来看:
rm -Rf .gittwo
mv .gitone .git
# Check with:
git status
git log
但是在一个文件夹中有两个存储库是不寻常的。
任何 git 命令都必须指定其 --git-dir
(.gitone
或 .gittwo
)