วิธีการย้ายพื้นที่เก็บข้อมูล git กับทุกสาขาจาก bitbucket ไปยัง github?


334

เป็นวิธีที่ดีที่สุดในการย้ายพื้นที่เก็บข้อมูล git กับทุกสาขาและประวัติเต็มรูปแบบจาก bitbucket เพื่อ GitHub คืออะไร? มีสคริปต์หรือรายการคำสั่งที่ฉันต้องใช้หรือไม่?


9
Github ให้เครื่องมือและเอกสารที่: help.github.com/articles/... help.github.com/articles/...
MEMS

สายไปงานเลี้ยงน้อย แต่นี่คือสคริปต์สำหรับการย้ายข้อมูล: gist.github.com/chinmaya-n/cff02f1277c811deab2e550f2aad9967
inblueswithu

คำตอบ:


394

คุณสามารถอ้างถึงหน้า 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
    ดูhttps://github.com/new/import
  • เว้นแต่ว่า ... repo ของคุณมีไฟล์ขนาดใหญ่: ปัญหาคือเครื่องมือนำเข้าจะล้มเหลวโดยไม่มีข้อความแสดงข้อผิดพลาดชัดเจน ฝ่ายสนับสนุนของ GitHubเท่านั้นที่จะสามารถวินิจฉัยสิ่งที่เกิดขึ้นได้

2
วิธีนี้สร้างปัญหาให้ฉัน (ไม่แน่ใจว่าเป็นปัญหาหรือไม่) เมื่อฉันทำมิเรอร์ repo จาก bitbucket ไปยัง github สำหรับ 5 สาขามันจะแสดงเป็น "Compare and Pull Request" ใน gitub มันไม่ได้แสดงเป็นสาขาใน GitHub ฉันจะทำอะไรได้บ้าง
Siddharth

2
แล้วมีปัญหาและวิกิกันอย่างไร?
Vladislav Rastrusny

@FractalizeR wiki เป็นเพียง repo อื่นที่คุณสามารถทำซ้ำได้เช่นกัน ( github.com/blog/699-making-github-more-open-git-backed-wikis ) ไม่มีวิธีง่ายๆในการทำซ้ำปัญหาแม้ว่า คุณต้องใช้ Api (โปรแกรมสำรองข้อมูล repo GitHub ต่างๆทำเช่นนั้น: addyosmani.com/blog/backing-up-a-github-account )
VonC

3
ใช้งานได้ถ้าคุณต้องการย้ายที่เก็บจาก Github ไปยัง Bitbucket เช่นกัน
simeg

1
ฉันต้องการใช้วิธีนี้เพื่อคัดลอก repo เพราะมันมีไฟล์ขนาดใหญ่ (> 100MB) GH จะไม่อนุญาตให้มีไฟล์ขนาดใหญ่ใน repos ของพวกเขา ฉันลบไฟล์ขนาดใหญ่ก่อนผลัก repo ไปยัง GH แต่ยกเว้นปัญหาอื่น ๆ ได้โดยใช้ "GH ของนำเข้าที่เก็บคุณสมบัติ" เป็นทางเลือกที่เหมาะสม95%ของเวลาที่อธิบายไว้ในคำตอบอื่น อย่างไรก็ตามหากล้มเหลวจะไม่ส่งข้อความแสดงข้อผิดพลาดที่เป็นประโยชน์และคุณต้องติดต่อฝ่ายสนับสนุน GH มันคือการสนับสนุน GH ที่แจ้งให้ฉันทราบถึงข้อ จำกัด ขนาดไฟล์
LS

412

มันง่ายมาก

สร้างพื้นที่เก็บข้อมูลว่างใหม่ใน GitHub (โดยไม่ต้อง readme หรือ licesne คุณสามารถเพิ่มก่อน) และหน้าจอต่อไปนี้จะแสดง

ตัวเลือกInside code ที่จะนำเข้าคุณวาง repo และvoilà URL bitbucket ของคุณ !!

คลิกในรหัสนำเข้า


12
คุณกำลังตอบคำถามจริงๆที่นี่เนื่องจากคำตอบที่ยอมรับแสดงวิธีการทั่วไปที่เกี่ยวข้องกับ Git เท่านั้น คำตอบของคุณง่ายขึ้น!
Emile Bergeron

6
คำตอบนี้ดีตราบใดที่คุณเป็นคนสร้างที่เก็บและมันเปลือย หากบุคคลอื่นสร้างที่เก็บให้คุณ (เช่นผู้ดูแลระบบของการสร้างสาขา) สิ่งนี้จะไม่ทำงาน คำตอบที่ได้รับการยอมรับเป็นวิธีที่จะไปในกรณีดังกล่าว
Master.Aurora

4
มุ่งหน้าไปที่ใครก็ตามที่คิดเกี่ยวกับการใช้วิธีนี้ลบการรับรองความถูกต้องสองปัจจัยของคุณบนโฮสต์ที่เก็บก่อนหน้านี้ของคุณก่อนที่คุณจะใช้บริการนี้มิฉะนั้นคุณจะติดอยู่ในวงวนไม่รู้จบของการพยายามลบ วิธีเดียวที่จะได้รับสิ่งนั้นคือการแทนที่/importส่วนท้ายของ URL ด้วย/settingsเพื่อเข้าถึงการตั้งค่าและลบออก
เดฟ

1
ข้อสังเกตเล็ก ๆ - หากคุณพบปัญหาคุณจะไม่ได้รับข้อความแสดงความผิดพลาด
RobertH

การใช้คุณสมบัติ " นำเข้าพื้นที่เก็บข้อมูล " ของ GH เป็นตัวเลือกที่เหมาะสม95%ของเวลา อย่างไรก็ตามหากล้มเหลวจะไม่ส่งข้อความแสดงข้อผิดพลาดที่เป็นประโยชน์และคุณต้องติดต่อฝ่ายสนับสนุน GH ฉันไม่สามารถใช้มันสำหรับ repo หนึ่งเพราะมันมีไฟล์ขนาดใหญ่ (> 100MB) ฉันต้องการใช้ วิธีการ CLI ที่ยอมรับแล้วลบไฟล์ขนาดใหญ่ก่อนที่จะผลัก repo ไปยัง GH
LS

125

ในกรณีที่คุณไม่พบปุ่ม "นำเข้ารหัส" บน GitHub คุณสามารถ:

  1. โดยตรงเปิดGithub ผู้นำเข้าurlและป้อน มันจะมีลักษณะ:สกรีนช็อตของผู้นำเข้า GitHub
  2. ให้ชื่อ (หรือมันจะนำเข้าชื่อโดยอัตโนมัติ)
  3. เลือกPublicหรือPrivateซื้อซ้ำ
  4. คลิก Begin Import

อัปเดต: เมื่อเร็ว ๆ นี้ Github ประกาศความสามารถในการ " นำเข้าที่เก็บด้วยไฟล์ขนาดใหญ่ "


น่าเสียดายที่นี่ไม่ได้ผลสำหรับความพยายามของฉันในการย้ายจาก codebasehq ไปยัง git-hub ให้ "ไม่รองรับ URL นี้" :(
sjmcdowall

@sjmcdowall ขอโทษที่มันไม่ได้ แต่ฉันเชื่อว่ามันควรจะทำงานได้ตั้งแต่ URL codebasehq ชี้ไปยังที่เก็บ git
biniam

ไม่มี URL อีกต่อไป
คอนเทนเนอร์ Coded

@CodedContainer ฉันเพิ่งตรวจสอบและใช้งานได้ ฉันอัปเดตภาพหน้าจอแล้วในตอนนี้
biniam

1
URL จะส่งคืน 404 หากคุณไม่ได้ลงชื่อเข้าใช้ GitHub หากคุณลงชื่อเข้าใช้เครื่องมือนำเข้าจะโหลด
Jason Hurt

41

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

2
โปรดระบุส่วนที่เกี่ยวข้องของลิงก์ในคำตอบของคุณตามที่ควรจะสามารถยืนได้ด้วยตัวเอง
k0pernikus

ฉันได้รับข้อผิดพลาดที่ระบุว่า "ข้อผิดพลาด: ล้มเหลวในการผลักดันการอ้างอิงถึงคำแนะนำ ' url.gi ': การอัปเดตถูกปฏิเสธเนื่องจากรีโมตมีงานที่คุณไม่มีอยู่ภายในเครื่องซึ่งมักจะเกิดจากที่เก็บอื่นผลักไปที่การอ้างอิงเดียวกัน คุณอาจต้องการรวมการเปลี่ยนแปลงระยะไกล (เช่นดึง ... ) ก่อนที่จะผลักดันอีกครั้งดูหมายเหตุเกี่ยวกับการส่งต่ออย่างรวดเร็วใน git push - ช่วยสำหรับรายละเอียด
คอนเทนเนอร์ Coded

1
นี่เป็นคำตอบเดียวที่ยังคงทำงานอยู่ในวันที่ 3/3/2019 :)
Wang-Zhao-Liu QM

13

ฉันมีกรณีการใช้งานย้อนกลับของการนำเข้าที่เก็บข้อมูลที่มีอยู่จาก Github ไปยัง Bitbucket

Bitbucket เสนอเครื่องมือนำเข้าเช่นกัน ขั้นตอนเดียวที่จำเป็นคือการเพิ่ม URL ไปยังที่เก็บ

ดูเหมือนว่า:

สกรีนช็อตของเครื่องมือนำเข้าบิตบิทเก็ต


5

ฉันรู้ว่านี่เป็นคำถามเก่า ฉันพบว่าหลายเดือนที่ผ่านมาเมื่อฉันพยายามทำสิ่งเดียวกันและรู้สึกผิดหวังกับคำตอบที่ได้รับ ดูเหมือนว่าพวกเขาทั้งหมดจะจัดการกับการนำเข้าจาก 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

5

มีการนำเข้าพื้นที่เก็บข้อมูลด้วย GitHub Importer

หากคุณมีโครงการที่โฮสต์ในระบบควบคุมเวอร์ชันอื่นในฐานะ Mercurial คุณสามารถนำเข้าสู่ GitHub โดยใช้เครื่องมือ GitHub Importer

  1. ที่มุมบนขวาของหน้าใด ๆ ให้คลิกแล้วคลิกนำเข้าที่เก็บ
  2. ภายใต้ "URL ที่เก็บโคลนเก่าของที่เก็บ" ให้พิมพ์ URL ของโครงการที่คุณต้องการนำเข้า
  3. เลือกบัญชีผู้ใช้ของคุณหรือองค์กรเพื่อเป็นเจ้าของพื้นที่เก็บข้อมูลจากนั้นพิมพ์ชื่อสำหรับพื้นที่เก็บข้อมูลบน GitHub
  4. ระบุว่าที่เก็บใหม่ควรเป็นสาธารณะหรือส่วนตัว
    • ที่เก็บสาธารณะจะปรากฏแก่ผู้ใช้ทุกคนใน GitHub ดังนั้นคุณจะได้รับประโยชน์จากชุมชนที่ทำงานร่วมกันของ GitHub
    • ปุ่มตัวเลือกพับลิกสาธารณะหรือที่เก็บส่วนตัวที่เก็บส่วนตัวใช้ได้เฉพาะกับเจ้าของที่เก็บเท่านั้นเช่นเดียวกับผู้ทำงานร่วมกันที่คุณเลือกที่จะแชร์ด้วย
  5. ตรวจสอบข้อมูลที่คุณป้อนแล้วคลิกเริ่มนำเข้า

คุณจะได้รับอีเมลเมื่อนำเข้าที่เก็บข้อมูลเรียบร้อยแล้ว

  1. https://help.github.com/categories/importing-your-projects-to-github
  2. https://help.github.com/articles/importing-a-repository-with-github-importer/

2

ในกรณีที่คุณต้องการย้ายที่เก็บ 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 ในโฟลเดอร์อื่นเพื่อให้คุณมีสองโฟลเดอร์ในเครื่องทั้งสองชี้ไปที่รีโมตต่าง ๆ (ก่อนบิต) และบิตใหม่ที่มีอยู่


2

ฉันสร้างสคริปต์ทุบตีต่อไปนี้เพื่อโคลนที่เก็บBitbucket (ผู้ใช้) ทั้งหมดของฉันไปที่ GitHub เป็นที่เก็บส่วนตัว


ที่ต้องการ:

  • jq (ตัวประมวลผล JSON บรรทัดคำสั่ง) | MacOS:brew install jq

ขั้นตอน:

  1. ไปที่https://github.com/settings/tokensและสร้างโทเค็นการเข้าถึง เราต้องการเพียงขอบเขต "repo" เท่านั้น

  2. บันทึกmove_me.shสคริปต์ในโฟลเดอร์ทำงานและแก้ไขไฟล์ตามต้องการ

  3. อย่าลืม CHMOD 755

  4. วิ่ง! ./move_me.sh

  5. สนุกกับเวลาที่คุณบันทึกไว้


หมายเหตุ:

  • มันจะโคลนที่เก็บ BitBucket ภายในไดเรกทอรีที่สคริปต์นั้นอยู่ (ไดเรกทอรีที่ทำงานของคุณ)

  • สคริปต์นี้ไม่ได้ลบที่เก็บ BitBucket ของคุณ


ต้องการย้ายไปที่ที่เก็บสาธารณะบน GitHub หรือไม่

ค้นหาและเปลี่ยน"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

1
สคริปต์ที่น่าสนใจรวมกับโทเค็น เรียบร้อย upvoted
VonC

@VonC ขอบคุณ!
cenk

1

นี่คือขั้นตอนในการย้ายที่เก็บ Git ส่วนตัว:

ขั้นตอนที่ 1: สร้างที่เก็บ Github

ขั้นแรกสร้างที่เก็บส่วนตัวใหม่บน Github.com สิ่งสำคัญคือการทำให้พื้นที่เก็บข้อมูลว่างเปล่าเช่นไม่ต้องตรวจสอบตัวเลือกเริ่มต้นพื้นที่เก็บข้อมูลนี้ด้วย README เมื่อสร้างพื้นที่เก็บข้อมูล

ขั้นตอนที่ 2: ย้ายเนื้อหาที่มีอยู่

ต่อไปเราต้องเติมที่เก็บ Github ด้วยเนื้อหาจากที่เก็บ Bitbucket ของเรา:

  1. ตรวจสอบพื้นที่เก็บข้อมูลที่มีอยู่จาก Bitbucket:
    $ git clone https://USER@bitbucket.org/USER/PROJECT.git
  1. เพิ่มที่เก็บ Github ใหม่เป็นรีโมตรีโมตของที่เก็บที่เช็กเอาต์จาก Bitbucket:
    $ cd PROJECT
    $ git remote add upstream https://github.com:USER/PROJECT.git
  1. ผลักสาขาทั้งหมด (ด้านล่าง: เพียงแค่ต้นแบบ) และแท็กไปยังที่เก็บ Github:
    $ git push upstream master
    $ git push --tags upstream

ขั้นตอนที่ 3: ทำความสะอาดพื้นที่เก็บข้อมูลเก่า

ท้ายที่สุดเราต้องแน่ใจว่าผู้พัฒนาไม่สับสนโดยมีที่เก็บสองแห่งสำหรับโครงการเดียวกัน นี่คือวิธีการลบที่เก็บ Bitbucket:

  1. ตรวจสอบอีกครั้งว่าที่เก็บ Github มีเนื้อหาทั้งหมด

  2. ไปที่เว็บอินเตอร์เฟสของที่เก็บ Bitbucket เก่า

  3. เลือกตัวเลือกเมนูการตั้งค่า> ลบที่เก็บ

  4. เพิ่ม URL ของที่เก็บ Github ใหม่เป็น URL เปลี่ยนเส้นทาง

จากนั้นพื้นที่เก็บข้อมูลก็จะสร้างบ้านใหม่ที่ Github ให้นักพัฒนาทุกคนรู้!


-1

วิธีที่ง่ายที่สุดในการทำ:

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
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.