เป็นวิธีที่ดีที่สุดในการย้ายพื้นที่เก็บข้อมูล git กับทุกสาขาและประวัติเต็มรูปแบบจาก bitbucket เพื่อ GitHub คืออะไร? มีสคริปต์หรือรายการคำสั่งที่ฉันต้องใช้หรือไม่?
เป็นวิธีที่ดีที่สุดในการย้ายพื้นที่เก็บข้อมูล 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
ตามที่ระบุไว้ในความคิดเห็น s โดยLS :
Import Code
คุณลักษณะจาก GitHubอธิบายโดยMarMass มันง่ายมาก
1ºสร้างพื้นที่เก็บข้อมูลว่างใหม่ใน GitHub (โดยไม่ต้อง readme หรือ licesne คุณสามารถเพิ่มก่อน) และหน้าจอต่อไปนี้จะแสดง
2ºตัวเลือกInside code ที่จะนำเข้าคุณวาง repo และvoilà URL bitbucket ของคุณ !!
/import
ส่วนท้ายของ URL ด้วย/settings
เพื่อเข้าถึงการตั้งค่าและลบออก
ในกรณีที่คุณไม่พบปุ่ม "นำเข้ารหัส" บน GitHub คุณสามารถ:
url
และป้อน มันจะมีลักษณะ:Public
หรือPrivate
ซื้อซ้ำBegin Import
อัปเดต: เมื่อเร็ว ๆ นี้ Github ประกาศความสามารถในการ " นำเข้าที่เก็บด้วยไฟล์ขนาดใหญ่ "
http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/
สิ่งนี้ช่วยให้ฉันย้ายจากผู้ให้บริการ git หนึ่งไปยังอีกคนหนึ่ง ในตอนท้ายของมันความมุ่งมั่นทั้งหมดอยู่ในคอมไพล์ปลายทาง ง่ายและตรงไปตรงมา
git remote rename origin bitbucket git remote add origin https://github.com/edwardaux/Pipelines.git git push origin master
เมื่อฉันมีความสุขที่การผลักดันนั้นประสบความสำเร็จกับ GitHub ฉันสามารถลบรีโมตเก่าได้ด้วยการออก:
git remote rm bitbucket
ฉันมีกรณีการใช้งานย้อนกลับของการนำเข้าที่เก็บข้อมูลที่มีอยู่จาก Github ไปยัง Bitbucket
Bitbucket เสนอเครื่องมือนำเข้าเช่นกัน ขั้นตอนเดียวที่จำเป็นคือการเพิ่ม URL ไปยังที่เก็บ
ดูเหมือนว่า:
ฉันรู้ว่านี่เป็นคำถามเก่า ฉันพบว่าหลายเดือนที่ผ่านมาเมื่อฉันพยายามทำสิ่งเดียวกันและรู้สึกผิดหวังกับคำตอบที่ได้รับ ดูเหมือนว่าพวกเขาทั้งหมดจะจัดการกับการนำเข้าจาก Bitbucket ไปยัง GitHub ครั้งเดียวที่เก็บข้อมูลทั้งผ่านคำสั่งที่ออกตามสั่งหรือผ่านผู้นำเข้า GitHub
ฉันคว้ารหัสจากโครงการ GitHub ที่เรียกว่าgitterและแก้ไขให้ตรงกับความต้องการของฉัน
คุณสามารถแยกส่วนสำคัญหรือนำรหัสจากที่นี่:
#!/usr/bin/env ruby
require 'fileutils'
# Originally -- Dave Deriso -- deriso@gmail.com
# Contributor -- G. Richard Bellamy -- rbellamy@terradatum.com
# 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 = "git@bitbucket.org:#{@org}/#{@repo_name}.git"
@git_github_origin = "git@github.com:#{@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
มีการนำเข้าพื้นที่เก็บข้อมูลด้วย GitHub Importer
หากคุณมีโครงการที่โฮสต์ในระบบควบคุมเวอร์ชันอื่นในฐานะ Mercurial คุณสามารถนำเข้าสู่ GitHub โดยใช้เครื่องมือ GitHub Importer
คุณจะได้รับอีเมลเมื่อนำเข้าที่เก็บข้อมูลเรียบร้อยแล้ว
ในกรณีที่คุณต้องการย้ายที่เก็บ git ในพื้นที่ของคุณไปยัง upstream อื่นคุณสามารถทำได้ดังนี้:
เพื่อรับ URL ระยะไกลปัจจุบัน:
คอมไพล์ get-url จากระยะไกล
จะแสดงรายการดังนี้: https://bitbucket.com/git/myrepo
เพื่อตั้งค่าที่เก็บระยะไกลใหม่:
git ระยะไกล set-url กำเนิด git@github.com: โฟลเดอร์ / myrepo.git
ตอนนี้ผลักดันเนื้อหาของสาขาปัจจุบัน (พัฒนา):
git push - ชุดกำเนิดต้นน้ำพัฒนา
ตอนนี้คุณมีสำเนาเต็มของสาขาในรีโมทใหม่
เลือกที่จะกลับไปเป็น git-remote ดั้งเดิมสำหรับโฟลเดอร์ในเครื่องนี้:
คอมไพล์ชุด URL ระยะไกล git https://bitbucket.com/git/myrepo
ให้ประโยชน์คุณสามารถรับ git-repository ใหม่ของคุณจาก github ในโฟลเดอร์อื่นเพื่อให้คุณมีสองโฟลเดอร์ในเครื่องทั้งสองชี้ไปที่รีโมตต่าง ๆ (ก่อนบิต) และบิตใหม่ที่มีอยู่
brew install jq
ไปที่https://github.com/settings/tokensและสร้างโทเค็นการเข้าถึง เราต้องการเพียงขอบเขต "repo" เท่านั้น
บันทึกmove_me.sh
สคริปต์ในโฟลเดอร์ทำงานและแก้ไขไฟล์ตามต้องการ
อย่าลืม CHMOD 755
วิ่ง! ./move_me.sh
สนุกกับเวลาที่คุณบันทึกไว้
มันจะโคลนที่เก็บ BitBucket ภายในไดเรกทอรีที่สคริปต์นั้นอยู่ (ไดเรกทอรีที่ทำงานของคุณ)
สคริปต์นี้ไม่ได้ลบที่เก็บ BitBucket ของคุณ
ค้นหาและเปลี่ยน"private": true
ไปที่"private": false
ด้านล่าง
ดูที่คู่มือนักพัฒนาซอฟต์แวร์นี่เป็นเพียงการแก้ไขสองสามอย่าง
มีความสุขในการเคลื่อนไหว
#!/bin/bash
BB_USERNAME=your_bitbucket_username
BB_PASSWORD=your_bitbucket_password
GH_USERNAME=your_github_username
GH_ACCESS_TOKEN=your_github_access_token
###########################
pagelen=$(curl -s -u $BB_USERNAME:$BB_PASSWORD https://api.bitbucket.org/2.0/repositories/$BB_USERNAME | jq -r '.pagelen')
echo "Total number of pages: $pagelen"
hr () {
printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' -
}
i=1
while [ $i -le $pagelen ]
do
echo
echo "* Processing Page: $i..."
hr
pageval=$(curl -s -u $BB_USERNAME:$BB_PASSWORD https://api.bitbucket.org/2.0/repositories/$BB_USERNAME?page=$i)
next=$(echo $pageval | jq -r '.next')
slugs=($(echo $pageval | jq -r '.values[] | .slug'))
repos=($(echo $pageval | jq -r '.values[] | .links.clone[1].href'))
j=0
for repo in ${repos[@]}
do
echo "$(($j + 1)) = ${repos[$j]}"
slug=${slugs[$j]}
git clone --bare $repo
cd "$slug.git"
echo
echo "* $repo cloned, now creating $slug on github..."
echo
read -r -d '' PAYLOAD <<EOP
{
"name": "$slug",
"description": "$slug - moved from bitbucket",
"homepage": "https://github.com/$slug",
"private": true
}
EOP
curl -H "Authorization: token $GH_ACCESS_TOKEN" --data "$PAYLOAD" \
https://api.github.com/user/repos
echo
echo "* mirroring $repo to github..."
echo
git push --mirror "git@github.com:$GH_USERNAME/$slug.git"
j=$(( $j + 1 ))
hr
cd ..
done
i=$(( $i + 1 ))
done
นี่คือขั้นตอนในการย้ายที่เก็บ Git ส่วนตัว:
ขั้นตอนที่ 1: สร้างที่เก็บ Github
ขั้นแรกสร้างที่เก็บส่วนตัวใหม่บน Github.com สิ่งสำคัญคือการทำให้พื้นที่เก็บข้อมูลว่างเปล่าเช่นไม่ต้องตรวจสอบตัวเลือกเริ่มต้นพื้นที่เก็บข้อมูลนี้ด้วย README เมื่อสร้างพื้นที่เก็บข้อมูล
ขั้นตอนที่ 2: ย้ายเนื้อหาที่มีอยู่
ต่อไปเราต้องเติมที่เก็บ Github ด้วยเนื้อหาจากที่เก็บ Bitbucket ของเรา:
$ git clone https://USER@bitbucket.org/USER/PROJECT.git
$ cd PROJECT
$ git remote add upstream https://github.com:USER/PROJECT.git
$ git push upstream master
$ git push --tags upstream
ขั้นตอนที่ 3: ทำความสะอาดพื้นที่เก็บข้อมูลเก่า
ท้ายที่สุดเราต้องแน่ใจว่าผู้พัฒนาไม่สับสนโดยมีที่เก็บสองแห่งสำหรับโครงการเดียวกัน นี่คือวิธีการลบที่เก็บ Bitbucket:
ตรวจสอบอีกครั้งว่าที่เก็บ Github มีเนื้อหาทั้งหมด
ไปที่เว็บอินเตอร์เฟสของที่เก็บ Bitbucket เก่า
เลือกตัวเลือกเมนูการตั้งค่า> ลบที่เก็บ
เพิ่ม URL ของที่เก็บ Github ใหม่เป็น URL เปลี่ยนเส้นทาง
จากนั้นพื้นที่เก็บข้อมูลก็จะสร้างบ้านใหม่ที่ Github ให้นักพัฒนาทุกคนรู้!
วิธีที่ง่ายที่สุดในการทำ:
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