बिटबकेट से जीथब तक सभी शाखाओं और पूरे इतिहास के साथ गिट रिपॉजिटरी को स्थानांतरित करने का सबसे अच्छा तरीका क्या है? क्या कोई स्क्रिप्ट या कमांड की एक सूची है जिसका मुझे उपयोग करना है?
बिटबकेट से जीथब तक सभी शाखाओं और पूरे इतिहास के साथ गिट रिपॉजिटरी को स्थानांतरित करने का सबसे अच्छा तरीका क्या है? क्या कोई स्क्रिप्ट या कमांड की एक सूची है जिसका मुझे उपयोग करना है?
जवाबों:
आप 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
GitHub की सुविधा का उपयोग करना आसान है । Https://github.com/new/import
देखेंयह बहुत सरल है।
1 rep GitHub में एक नया खाली भंडार बनाएं (बिना रीडमी या लिसेन के, आप उन्हें पहले जोड़ सकते हैं) और निम्नलिखित स्क्रीन दिखाएगा
2º अंदर करने के लिए आयात कोड विकल्प आपको अपनी bitbucket यूआरएल रेपो और देखा पेस्ट !!
/import
URL के अंत में /settings
सेटिंग्स को एक्सेस करने और इसे हटाने के साथ प्रतिस्थापित किया जाए।
यदि आपको जीथब पर "आयात कोड" बटन नहीं मिल रहा है, तो आप यह कर सकते हैं:
url
। ऐसा लगेगा:Public
या Private
रेपोBegin Import
अद्यतन: हाल ही में, Github "करने की क्षमता की घोषणा की बड़ी फ़ाइलों के साथ आयात खजाने "
http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/
इससे मुझे एक गिट प्रदाता से दूसरे में जाने में मदद मिली। इसके अंत में, सभी कमिट डेस्टिनेशन गिट में थे। सरल और सीधे आगे।
git remote rename origin bitbucket git remote add origin https://github.com/edwardaux/Pipelines.git git push origin master
एक बार जब मैं खुश था कि धक्का गीथहब के लिए सफल रहा है, तो मैं जारी करके पुराने रिमोट को हटा सकता था:
git remote rm 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 आयातक के साथ एक भंडार का आयात करना है
यदि आपके पास Mercurial के रूप में किसी अन्य संस्करण नियंत्रण प्रणाली पर होस्ट की गई परियोजना है, तो आप GitHub आयातक उपकरण का उपयोग करके स्वचालित रूप से इसे GitHub में आयात कर सकते हैं।
जब रिपॉजिटरी पूरी तरह से आयात हो गई हो तो आपको एक ईमेल मिलेगा।
यदि आप अपने स्थानीय गिट रिपॉजिटरी को एक और अपस्ट्रीम में स्थानांतरित करना चाहते हैं, तो आप यह भी कर सकते हैं:
वर्तमान दूरस्थ url प्राप्त करने के लिए:
git रिमोट get-url उत्पत्ति
कुछ इस तरह दिखाएगा: https://bitbucket.com/git/myrepo
नया दूरस्थ रिपॉजिटरी सेट करने के लिए:
git रिमोट सेट-url उत्पत्ति git@github.com: फ़ोल्डर / myrepo.git
अब करंट (डेवलप) ब्रांच की सामग्री को पुश करें:
git push --set-upstream मूल का विकास होता है
अब आपके पास नए रिमोट में शाखा की पूरी कॉपी है।
वैकल्पिक रूप से इस स्थानीय फ़ोल्डर के लिए मूल गिट-रिमोट पर लौटें:
git दूरस्थ सेट-url मूल https://bitbucket.com/git/myrepo
वह लाभ देता है जो अब आप अपने नए गिट-रिपॉजिटरी को एक अन्य फ़ोल्डर में जीथब से प्राप्त कर सकते हैं ताकि आपके पास दो स्थानीय फ़ोल्डर हैं जो दोनों अलग-अलग रीमोट की ओर इशारा करते हैं, पिछले (बिटबकेट) और नया दोनों उपलब्ध हैं।
brew install jq
Https://github.com/settings/tokens पर जाएं और एक पहुंच टोकन बनाएं। हमें केवल "रेपो" स्कोप चाहिए।
move_me.sh
स्क्रिप्ट को एक कार्यशील फ़ोल्डर में सहेजें और आवश्यकतानुसार फ़ाइल को संपादित करें।
भूलना मत CHMOD 755
Daud! ./move_me.sh
आपके द्वारा बचाए गए समय का आनंद लें।
यह स्क्रिप्ट के अंदर (आपकी वर्किंग डायरेक्टरी) लिपि के अंदर बिटबकेट रिपॉजिटरी को क्लोन करेगा।
यह स्क्रिप्ट आपके 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
यहां एक निजी गिट भंडार को स्थानांतरित करने के लिए कदम उठाए गए हैं:
चरण 1: गितुब भंडार बनाएँ
सबसे पहले, Github.com पर एक नया निजी भंडार बनाएं। रिपॉजिटरी को खाली रखना महत्वपूर्ण है, उदाहरण के लिए विकल्प की जांच न करें रिपॉजिटरी का निर्माण करते समय README के साथ इस रिपॉजिटरी को आरम्भ करें।
चरण 2: मौजूदा सामग्री को स्थानांतरित करें
इसके बाद, हमें अपने बिटबकेट रिपॉजिटरी से सामग्री के साथ जीथब रिपॉजिटरी को भरना होगा:
$ 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 रिपॉजिटरी के URL को रीडायरेक्ट URL के रूप में जोड़ें
उस के साथ, भंडार पूरी तरह से जीथब में अपने नए घर में बस गया। सभी डेवलपर्स को बताएं!
इसे करने का सबसे सरल तरीका:
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