CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 23 Jul 2025 22:44:29 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20081217044116
location: https://web.archive.org/web/20081217044116/https://github.com/guides/import-from-subversion
server-timing: captures_list;dur=0.464527, exclusion.robots;dur=0.017311, exclusion.robots.policy;dur=0.008395, esindex;dur=0.011330, cdx.remote;dur=14.765939, LoadShardBlock;dur=186.663579, PetaboxLoader3.datanode;dur=73.216442, PetaboxLoader3.resolve;dur=69.091752
x-app-server: wwwb-app223
x-ts: 302
x-tr: 227
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app223; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Wed, 23 Jul 2025 22:44:29 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.26
x-archive-orig-date: Wed, 17 Dec 2008 04:41:16 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 78ms
x-archive-orig-etag: "65362c7b1ac030eddf64418f5e23ecb8"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 8681
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Wed, 17 Dec 2008 04:41:16 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Thu, 06 Mar 2008 02:59:57 GMT", ; rel="prev memento"; datetime="Tue, 04 Nov 2008 16:42:20 GMT", ; rel="memento"; datetime="Wed, 17 Dec 2008 04:41:16 GMT", ; rel="next memento"; datetime="Wed, 04 Feb 2009 12:23:05 GMT", ; rel="last memento"; datetime="Wed, 26 Feb 2025 11:29:25 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_7_20081217023112_crawl101-c/51_7_20081217044045_crawl103.arc.gz
server-timing: captures_list;dur=0.812329, exclusion.robots;dur=0.028389, exclusion.robots.policy;dur=0.013091, esindex;dur=0.015475, cdx.remote;dur=12.711035, LoadShardBlock;dur=317.428352, PetaboxLoader3.datanode;dur=219.085524, PetaboxLoader3.resolve;dur=174.978951, load_resource;dur=136.646824
x-app-server: wwwb-app223
x-ts: 200
x-tr: 507
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
Import from Subversion — GitHub Guides — GitHub
Guides: Import from Subversion
Guides: Import from Subversion
The Easy Way
Github can directly import SVN projects. All you’ll need is the repository URL. More details are in the blog article that introduced the feature.
The Less Easy Way
The automatic way doesn’t suit your needs? No problem, just use git-svn
First, be sure to create your repository on github
$ git svn clone -s SVN_REPO_URL LOCAL_DIR $ cd LOCAL_DIR $ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git $ git push origin master
Note that the -s switch implies that your svn repo is set up with the standard branches / tags / trunk structure.
Author mapping
When migrating a Subversion repository to Git, you can map the Subversion users to Git users. You have to create an authors file which contains the mappings:fesplugas = Francesc Esplugas <fesplugas@intra....bles.net>Then clone the subversion repository with the previously created
authors-file
:
$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu
Other guides
Last edited by nydusmedia, 2 months ago
Versions:
This feature is coming soon. Sit tight!