我正在尝试使用1.0版本的Bitbucket API previously managed。
我需要从Gitolite迁移到Bitbucket,并且遇到Bitbucket API v2.0的问题。
这是我的脚本代码:
#!/bin/bash
# Usage: ./bitbucket-migrate.sh repos.txt
#
# repos.txt should have one repository per line.
echo "Reading $1"
while read line
do
repo=$line
echo "###"
echo "Cloning a bare copy of $repo"
git clone --bare git@git.company.com:$repo
echo "Waiting for clone completion"
sleep 45;
cd $repo.git
echo "Creating repo in Bitbucket"
curl -X POST -v -u username@company.com:password -H "Content-Type: application/json" \ https://api.bitbucket.org/2.0/repositories/teamname/$repo \ -d '{"scm": "git", "is_private": "true", "fork_policy": "no_public_forks"}'
echo "Pushing local mirror to bitbucket"
git push --mirror git@bitbucket.org:teamname/$repo.git
echo "Waiting for push completion"
sleep 45;
cd ..
echo "Removing $repo.git"
rm -rf "$repo.git"
echo "Waiting 10 seconds"
echo "###"
sleep 10;
done < $1
exit
此时脚本成功创建了一个空仓库,但在尝试将镜像推送到BitBucket时失败。
如果副本需要一段时间,我会进行几次长时间的睡眠,但我不相信他们会以这种方式产生影响。
这是收到的错误:
$ git push --mirror git@bitbucket.org:teamname/$repo.git
conq: not a git repository.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我是否需要将镜像推送作为第二个API调用?这个电话会是什么样的?我在这里有点失落。
谢谢!
答案 0 :(得分:2)
我要回答我自己的问题! [主原谅我]
我做的API请求确实创建了存储库,但是JSON中断并且它没有读取我传入的参数。
由于这个原因,Bitbucket使用默认的 hg 而不是 git 创建了repo,导致我在尝试将镜像推送到repo时看到的错误
我最终手动删除了使用早期请求创建的第一个repo,并在Bitbucket UI中手动重新创建它作为git repo,将我的帐户默认设置为git(因为它自动默认为使用的最后一个repo类型)。 / p>
一旦完成,我就可以将--mirror推送到存储库了。该脚本的后续运行对我有用,因为它创建了具有默认值的repo(现在设置为git)并且能够正确推送。