gpt4 book ai didi

git - 将 SVN 存储库移至 Bitbucket

转载 作者:行者123 更新时间:2023-12-04 16:46:35 25 4
gpt4 key购买 nike

关于如何将 SVN 存储库移动到 Linux 上的 Bitbucket 的分步说明。

我在 SVN 中有一些存储库,我想转移到 Bitbucket,如果有人知道如何通过 linux 命令执行此操作,我将非常感激,因此我可以将其转换为脚本。

非常感谢!

最佳答案

您可以使用 git svn clone命令将 svn repo 迁移到 git repo。详细步骤如下:

git svn clone <URL for svn repo>
# besides you can use --trunk, --branches and --tags etc for git svn clone command
# may be asked to enter SVN credentials

# after first creating the repo in bitbucket...
cd reponame
git remote add origin <bitbucket repo URL>
# you may also need to "git pull --allow-unrelated-histories" to merge you new local branch with the remote
# you may need to do a "git branch --set-upstream-to=origin/master"
# you may also need to another "git pull --allow-unrelated-histories" to merge you new local branch with the remote
git push origin --all

关于git - 将 SVN 存储库移至 Bitbucket,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48793170/

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