すべてのブランチと全履歴を含むgitリポジトリをbitbucketからgithubに移動するための最良の方法は何ですか?使用しなければならないスクリプトやコマンドのリストはありますか?
GitHubのページ " リポジトリの複製 "を参照することができます
それは使用しています:
git clone --mirror
:すべての参照(コミット、タグ、ブランチ)を複製するgit Push --mirror
:すべてをプッシュするそれは与えるでしょう:
git clone --mirror https://bitbucket.org/exampleuser/repository-to-mirror.git
# Make a bare mirrored clone of the repository
cd repository-to-mirror.git
git remote set-url --Push Origin https://github.com/exampleuser/mirrored
# Set the Push location to your mirror
git Push --mirror
Import Code
機能 を使うほうが簡単です。とても簡単です。
1ºGitHubに新しい空のリポジトリを作成し(readmeやlicesneがなくても、事前に追加できます)、次の画面が表示されます
2º内部インポートコードあなたがあなたのbitbucket URLのレポとvoilàを貼り付けるオプション!
Githubに[コードのインポート]ボタンが見つからない場合は、次の方法があります。
url
name__を入力してください。それは次のようになります。 Public
name__またはPrivate
repoを選択してくださいBegin Import
をクリックアップデート:最近、Githubは " 大きなファイルのあるリポジトリのインポート "の機能を発表しました。
http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/
これは私があるGitプロバイダから他のプロバイダへ移動するのを助けました。それが終わると、全てのコミットはデスティネーションgitにありました。単純明快です。
git remote rename Origin bitbucket git remote add Origin https://github.com/edwardaux/Pipelines.git git Push Origin master
PushがGitHubに成功したことに満足したら、次のコマンドを発行して古いリモコンを削除できます。
git remote rm bitbucket
Githubからbitbucketに既存のリポジトリをインポートするという逆のユースケースがありました。
Bitbucketは インポートツール も提供しています。唯一必要なステップはリポジトリにURLを追加することです。
それはように見えます:
GitHubインポーターでリポジトリをインポートする
プロジェクトをMercurialなどの別のバージョン管理システムでホストしている場合は、GitHub Importerツールを使って自動的にGitHubにインポートすることができます。
リポジトリが完全にインポートされると電子メールが届きます。
これは昔からの問題です。私は数ヶ月前に私が同じことをやろうとしていたときにそれを見つけました、そして与えられた答えに圧倒されました。彼らは皆、アラカルトで発行されたコマンド、あるいはGitHubインポーターを通して、一度に一つのリポジトリでBitbucketからGitHubへのインポートを扱っているようでした。
私は gitter というGitHubプロジェクトからコードを入手し、それを自分のニーズに合わせて修正しました。
あなたは 要旨 をフォークするか、またはここからコードを取ることができます。
#!/usr/bin/env Ruby
require 'fileutils'
# Originally -- Dave Deriso -- [email protected]
# Contributor -- G. Richard Bellamy -- [email protected]
# If you contribute, put your name here!
# To get your team ID:
# 1. Go to your GitHub profile, select 'Personal Access Tokens', and create an Access token
# 2. curl -H "Authorization: token <very-long-access-token>" https://api.github.com/orgs/<org-name>/teams
# 3. Find the team name, and grabulate the Team ID
# 4. PROFIT!
#----------------------------------------------------------------------
#your particulars
@access_token = ''
@team_id = ''
@org = ''
#----------------------------------------------------------------------
#the verison of this app
@version = "0.2"
#----------------------------------------------------------------------
#some global params
@create = false
@add = false
@migrate = false
@debug = false
@done = false
@error = false
#----------------------------------------------------------------------
#fancy schmancy color scheme
class String; def c(cc); "\e[#{cc}m#{self}\e[0m" end end
#200.to_i.times{ |i| print i.to_s.c(i) + " " }; puts
@sep = "-".c(90)*95
@sep_pref = ".".c(90)*95
@sep_thick = "+".c(90)*95
#----------------------------------------------------------------------
# greetings
def hello
puts @sep
puts "BitBucket to GitHub migrator -- v.#{@version}".c(95)
#puts @sep_thick
end
def goodbye
puts @sep
puts "done!".c(95)
puts @sep
exit
end
def puts_title(text)
puts @sep, "#{text}".c(36), @sep
end
#----------------------------------------------------------------------
# helper methods
def get_options
require 'optparse'
n_options = 0
show_options = false
OptionParser.new do |opts|
opts.banner = @sep +"\nUsage: gitter [options]\n".c(36)
opts.version = @version
opts.on('-n', '--name [name]', String, 'Set the name of the new repo') { |value| @repo_name = value; n_options+=1 }
opts.on('-c', '--create', String, 'Create new repo') { @create = true; n_options+=1 }
opts.on('-m', '--migrate', String, 'Migrate the repo') { @migrate = true; n_options+=1 }
opts.on('-a', '--add', String, 'Add repo to team') { @add = true; n_options+=1 }
opts.on('-l', '--language [language]', String, 'Set language of the new repo') { |value| @language = value.strip.downcase; n_options+=1 }
opts.on('-d', '--debug', 'Print commands for inspection, doesn\'t actually run them') { @debug = true; n_options+=1 }
opts.on_tail('-h', '--help', 'Prints this little guide') { show_options = true; n_options+=1 }
@opts = opts
end.parse!
if show_options || n_options == 0
puts @opts
puts "\nExamples:".c(36)
puts 'create new repo: ' + "\t\tgitter -c -l javascript -n node_app".c(93)
puts 'migrate existing to GitHub: ' + "\tgitter -m -n node_app".c(93)
puts 'create repo and migrate to it: ' + "\tgitter -c -m -l javascript -n node_app".c(93)
puts 'create repo, migrate to it, and add it to a team: ' + "\tgitter -c -m -a -l javascript -n node_app".c(93)
puts "\nNotes:".c(36)
puts "Access Token for repo is #{@access_token} - change this on line 13"
puts "Team ID for repo is #{@team_id} - change this on line 14"
puts "Organization for repo is #{@org} - change this on line 15"
puts 'The assumption is that the person running the script has SSH access to BitBucket,'
puts 'and GitHub, and that if the current directory contains a directory with the same'
puts 'name as the repo to migrated, it will deleted and recreated, or created if it'
puts 'doesn\'t exist - the repo to migrate is mirrored locally, and then created on'
puts 'GitHub and pushed from that local clone.'
puts 'New repos are private by default'
puts "Doesn\'t like symbols for language (ex. use \'c\' instead of \'c++\')"
puts @sep
exit
end
end
#----------------------------------------------------------------------
# git helper methods
def gitter_create(repo)
if @language
%q[curl https://api.github.com/orgs/] + @org + %q[/repos -H "Authorization: token ] + @access_token + %q[" -d '{"name":"] + repo + %q[","private":true,"language":"] + @language + %q["}']
else
%q[curl https://api.github.com/orgs/] + @org + %q[/repos -H "Authorization: token ] + @access_token + %q[" -d '{"name":"] + repo + %q[","private":true}']
end
end
def gitter_add(repo)
if @language
%q[curl https://api.github.com/teams/] + @team_id + %q[/repos/] + @org + %q[/] + repo + %q[ -H "Accept: application/vnd.github.v3+json" -H "Authorization: token ] + @access_token + %q[" -d '{"permission":"pull","language":"] + @language + %q["}']
else
%q[curl https://api.github.com/teams/] + @team_id + %q[/repos/] + @org + %q[/] + repo + %q[ -H "Accept: application/vnd.github.v3+json" -H "Authorization: token ] + @access_token + %q[" -d '{"permission":"pull"}']
end
end
def git_clone_mirror(bitbucket_Origin, path)
"git clone --mirror #{bitbucket_Origin}"
end
def git_Push_mirror(github_Origin, path)
"(cd './#{path}' && git Push --mirror #{github_Origin} && cd ..)"
end
def show_pwd
if @debug
Dir.getwd()
end
end
def git_list_Origin(path)
"(cd './#{path}' && git config remote.Origin.url && cd ..)"
end
# error checks
def has_repo
File.exist?('.git')
end
def has_repo_or_error(show_error)
@repo_exists = has_repo
if !@repo_exists
puts 'Error: no .git folder in current directory'.c(91) if show_error
@error = true
end
"has repo: #{@repo_exists}"
end
def has_repo_name_or_error(show_error)
@repo_name_exists = !(defined?(@repo_name)).nil?
if !@repo_name_exists
puts 'Error: repo name missing (-n your_name_here)'.c(91) if show_error
@error = true
end
end
#----------------------------------------------------------------------
# main methods
def run(commands)
if @debug
commands.each { |x| puts(x) }
else
commands.each { |x| system(x) }
end
end
def set_globals
puts_title 'Parameters'
@git_bitbucket_Origin = "[email protected]:#{@org}/#{@repo_name}.git"
@git_github_Origin = "[email protected]:#{@org}/#{@repo_name}.git"
puts 'debug: ' + @debug.to_s.c(93)
puts 'working in: ' + Dir.pwd.c(93)
puts 'create: ' + @create.to_s.c(93)
puts 'migrate: ' + @migrate.to_s.c(93)
puts 'add: ' + @add.to_s.c(93)
puts 'language: ' + @language.to_s.c(93)
puts 'repo name: '+ @repo_name.to_s.c(93)
puts 'bitbucket: ' + @git_bitbucket_Origin.to_s.c(93)
puts 'github: ' + @git_github_Origin.to_s.c(93)
puts 'team_id: ' + @team_id.to_s.c(93)
puts 'org: ' + @org.to_s.c(93)
end
def create_repo
puts_title 'Creating'
#error checks
has_repo_name_or_error(true)
goodbye if @error
puts @sep
commands = [
gitter_create(@repo_name)
]
run commands
end
def add_repo
puts_title 'Adding repo to team'
#error checks
has_repo_name_or_error(true)
goodbye if @error
puts @sep
commands = [
gitter_add(@repo_name)
]
run commands
end
def migrate_repo
puts_title "Migrating Repo to #{@repo_provider}"
#error checks
has_repo_name_or_error(true)
goodbye if @error
if Dir.exists?("#{@repo_name}.git")
puts "#{@repo_name} already exists... recursively deleting."
FileUtils.rm_r("#{@repo_name}.git")
end
path = "#{@repo_name}.git"
commands = [
git_clone_mirror(@git_bitbucket_Origin, path),
git_list_Origin(path),
git_Push_mirror(@git_github_Origin, path)
]
run commands
end
#----------------------------------------------------------------------
#sequence control
hello
get_options
#do stuff
set_globals
create_repo if @create
migrate_repo if @migrate
add_repo if @add
#peace out
goodbye
次に、スクリプトを使用します。
# create a list of repos
foo
bar
baz
# execute the script, iterating over your list
while read p; do ./bitbucket-to-github.rb -a -n $p; done<repos
# good nuff
ローカルのgitリポジトリを他の上流に移動したい場合は、次のようにすることもできます。
現在のリモートURLを取得します。
git remote get-url
https://bitbucket.com/git/myrepo のように表示されます。
新しいリモートリポジトリを設定します。
git remote set-url Origin [email protected]:folder/myrepo.git
現在の(開発中の)ブランチの内容をプッシュする:
git Push - セットアップストリームOrigin
これで、新しいリモートにブランチのフルコピーができました。
必要に応じて、このローカルフォルダの元のgit-remoteに戻ります。
git remote set-url Origin https://bitbucket.com/git/myrepo
新しいgitリポジトリを別のフォルダのgithubから取得できるようになり、以前の(bitbucket)と新しい(どちらも利用可能な)リモートを指す2つのローカルフォルダができるようになります。
それをする最も簡単な方法:
git remote rename Origin repo_bitbucket
git remote add Origin https://github.com/abc/repo.git
git Push Origin master
GitHubへのプッシュが成功したら、次のコマンドを実行して古いリモコンを削除します。
git remote rm repo_bitbucket
プライベートGitリポジトリを移動する手順は次のとおりです。
ステップ1:Githubリポジトリを作成する
まず、Github.comで新しいプライベートリポジトリを作成します。リポジトリを空にしておくことが重要です。リポジトリを作成するときに、[README]でこのリポジトリを初期化するオプションをオンにしないでください。
ステップ2:既存のコンテンツを移動する
次に、GithubリポジトリにBitbucketリポジトリのコンテンツを入力する必要があります。
$ git clone https://[email protected]/USER/PROJECT.git
$ cd PROJECT
$ git remote add upstream https://github.com:USER/PROJECT.git
$ git Push upstream master
$ git Push --tags upstream
ステップ3:古いリポジトリをクリーンアップする
最後に、同じプロジェクトに2つのリポジトリがあることで開発者が混乱しないようにする必要があります。 Bitbucketリポジトリを削除する方法は次のとおりです。
Githubリポジトリにすべてのコンテンツがあることを再確認してください
古いBitbucketリポジトリのWebインターフェイスに移動します
メニューオプション[設定]> [リポジトリの削除]を選択します
新しいGithubリポジトリのURLをリダイレクトURLとして追加します
これにより、リポジトリはGithubの新しいホームに完全に収まりました。すべての開発者に知らせてください!