gpt4 book ai didi

git - 如何在一个工作目录中使用两个 SVN 项目和相应的 git-svn 分支?

转载 作者:太空狗 更新时间:2023-10-29 14:34:58 32 4
gpt4 key购买 nike

我对 Git 比较陌生,但我想尝试一下(与 SVN 和 Bazaar 相比)。

任何人都可以为我推荐一个类似于以下情况的工作流程:

  • 1 个 SVN 存储库,包含多个项目
  • 1 个工作副本“src”

我的想法是,在“src”中我需要 checkout 项目 A,有时需要 checkout 项目 B。这两个项目都有多个分支。

目前,我已经制作了 2 个 SVN 存储库的 git 克隆,每个项目一个。 (我更喜欢 --bare repos,但它不适用于 git svn clone )

然后,我在“src”中创建了一个git repo,并且git remote add projA ..a_repo_git , "git remote add projB ..b_repo_git "。

现在,我可以使用“git remote”从“src”看到它们,我可以使用“git remote show projA”看到它们的分支

现在麻烦了..

  • 如何进入“src”projA/projB 中的任何分支?
  • 我如何修改它们,然后才能将它们推回(首先到 git_repos,或直接到 SVN 存储库)?
  • 这个“工作流程”可以吗,或者您有更好的主意吗?

我确实在 src 中尝试过:git checkout --track -b work_branch projA branch_in_A经过一番摆弄“获取”之后,我设法得到了东西。但是后来,我在将它推回 a_repo_git 时遇到了问题。 ,然后到SVN。这主要是反复试验。

不得不承认,远程分支我还是有问题! (当我必须使用“origin local_branch:origin_branch”或“origin origin_branch:local_branch”,或“origin origin_branch”或“origin/origin_branch”时,我迷路了!返回 Git 手册以进行更多阅读。)

最佳答案

我没有更新问题,因为在过去的几天里,在我的新 repo 的帮助下,我能够非常轻松地工作 :)

这是我最后做的:

在同一个目录下初始化两个SVN repos。 (我现在不记得了,但可能之前在同一个目录中完成了“git init”:

mkdir src && cd src(not sure about this: git init)git svn init --stdlayout --prefix=projA/ -RprojA file:///path/to/svn/repo/Agit svn init --stdlayout --prefix=projB/ -RprojB file:///path/to/svn/repo/B

“--stdlayout”表示SVN仓库是标准格式,主干、分支和标签在同一层。

“--prefix”用于分支名称。当我们执行“git branch -a”时,项目 A 的所有 SVN 分支都有前缀“projA”(例如:projA/branch_name_of_A)。 B也是一样。

-R 选项在 Git 存储库内部设置 SVN 存储库的名称(这是我们在引用 SVN 存储库/项目时与 Git 一起使用的名称)

在本例中,file:///path 是 SVN 存储库的路径,也是存储库中项目的路径。我使用“file://”是因为我使用的是平面文件存储库,没有服务器。对于 SVN 服务器,我确信它也可以与 http://一起工作。

在这一步之后,出于好奇我查看了文件 src/.git/config。上面的两个命令创建了几个“svn-remote”部分,一个用于每个项目(-R 选项),一个通用部分称为“svn”。我已经修改了条目,所以只有对项目的引用。每个引用都有 repo 路径(获取)和标签/分支/主干的条目。如果您查看该文件,就会了解需要更改的内容。

在此之后,我使用

获取了每个项目的内容
git svn fetch projA #the contents of project A repo are downloadedgit svn fetch projB #the contents of project B repo are downloaded

现在,runnig "git branch -a"显示了两个仓库的所有分支,以及主分支(本地)。 “git branch -r”没有显示任何分支;可能是因为它们是“svn-remote”而不是“remote”

当前的“master”分支指向第二个项目的主干。我决定摆脱它,因为它会在从一个项目切换到另一个项目时引起问题。

我创建了两个新分支指向每个项目的主干,然后删除了“master”分支:

git checkout -b master_project_A projA/trunkgit checkout -b master_project_B projB/trunkgit branch -D master

现在,对于“工作流程”;在项目 A 上工作:

git checkout master_project_A #switch to project Agit svn rebase #check for any updates on SVN repogit checkout -b work_on_A master_project_A #create a branch starting from the master of project Awork work work on work_on_A; commit, etcgit checkout master_project_A #go back to master of project Agit svn rebase #check again for any update on SVN repogit checkout work_on_A #go back to the work branchgit rebase master_project_A #update branch with any changes from the master of project Agit checkout master_project_A #go back to the master of project Agit merge work_on_A #merge to the master of project A the changes from the work branchgit svn dcommit #commit changes to the SVN repo, in trunk, because master_project_A was pointing to its trunk

如果我想从 SVN check out 一个现有的分支,我可以这样做:

git checkout -b work_on_branch projA/branch_namework work workgit svn rebase #update any changes from projA/branch_namegit svn dcommit #commit updates back to the branch in the SVN repo

对于项目 B,我可以做完全相同的事情。最后,我可以在同一个目录“src”中拥有项目 A 或 B 的内容,并可以从同一个 Git 存储库访问 SVN 存储库中的两个项目! :D

我仍然没有弄清楚如何创建本地分支然后将其推送到 SVN 存储库 - 我已经接近了,但没有成功。

此外,了解命令“reset”(“git reset --hard projPrefix/branch”)可能会有用,但我用它破坏了一些东西,所以最好把它留到其他时间。

关于git - 如何在一个工作目录中使用两个 SVN 项目和相应的 git-svn 分支?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/609872/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com