CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 23 Jul 2025 20:45:40 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090429064747
location: https://web.archive.org/web/20090429064747/https://github.com/guides/import-from-subversion.atom
server-timing: captures_list;dur=1.227481, exclusion.robots;dur=0.020979, exclusion.robots.policy;dur=0.010017, esindex;dur=0.633575, cdx.remote;dur=33.374012, LoadShardBlock;dur=144.569440, PetaboxLoader3.datanode;dur=70.047434, PetaboxLoader3.resolve;dur=67.015029
x-app-server: wwwb-app218
x-ts: 302
x-tr: 201
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app218; 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 20:45:41 GMT
content-type: application/atom+xml; charset=utf-8
content-length: 74714
x-archive-orig-server: nginx/0.6.26
x-archive-orig-date: Wed, 29 Apr 2009 06:39:49 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 320ms
x-archive-orig-etag: "f14af2fbee698cf81679a4626daa8213"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 74714
cache-control: max-age=1800
x-archive-guessed-content-type: text/xml
x-archive-guessed-charset: utf-8
memento-datetime: Wed, 29 Apr 2009 06:47:47 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Thu, 26 Feb 2009 20:33:35 GMT", ; rel="prev memento"; datetime="Thu, 26 Feb 2009 20:33:35 GMT", ; rel="memento"; datetime="Wed, 29 Apr 2009 06:47:47 GMT", ; rel="last memento"; datetime="Wed, 29 Apr 2009 06:47:47 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: 52_9_20090429044527_crawl101-c/52_9_20090429064743_crawl101.arc.gz
server-timing: captures_list;dur=0.538485, exclusion.robots;dur=0.021296, exclusion.robots.policy;dur=0.010323, esindex;dur=0.013245, cdx.remote;dur=27.534740, LoadShardBlock;dur=398.429736, PetaboxLoader3.datanode;dur=246.072881, PetaboxLoader3.resolve;dur=402.808998, load_resource;dur=291.863289
x-app-server: wwwb-app218
x-ts: 200
x-tr: 754
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=()
accept-ranges: bytes
tag:github.com,2008:/guides/import-from-subversion
GitHub Guides - Import from Subversion
2009-03-11T07:55:02-07:00
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2009-03-11T07:55:02-07:00
Import from Subversion - version 38
Wed Mar 11 07:55:02 -0700 2009
<h1>Let GitHub do it for you</h1>
<p>GitHub can directly import <span class="caps">SVN</span> projects. All you’ll need is the repository <span class="caps">URL</span>. More details are in the <a href="https://github.com/blog/156-subversion-importing">blog article</a> that introduced the feature. Note: GitHub does not keep imported projects synchronized with the <span class="caps">SVN</span> repo.</p>
<h1>Do it yourself</h1>
<h2>svn2git</h2>
<p><a href="https://github.com/jcoglan/svn2git/tree/master">svn2git</a> is designed to provide a complete svn import. Unlike git-svn, it will create proper git tags from your svn “tags”</p>
<h2>git-svn</h2>
<p><a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a> can be used to import as well. Note that there may be issues if you have branches or tags. If you only have a trunk, like many svn users, this method should work for you without issue.</p>
<p>First, be sure to <a href="https://github.com/repositories/new">create your repository on github</a></p>
<pre class="console"> $ 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</pre>
<p>Note that the -s switch implies that your svn repo is set up with the standard branches / tags / trunk structure.</p>
<p>git-svn adds a note to every commit message it copies over from svn. To get rid of that note, add <code>--no-metadata</code> to the git svn clone command</p>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddox</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
jmdeldin
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2009-03-05T06:58:58-08:00
Import from Subversion - version 37
Thu Mar 05 06:58:58 -0800 2009
<h1>Let GitHub do it for you</h1>
<p>GitHub can directly import <span class="caps">SVN</span> projects. All you’ll need is the repository <span class="caps">URL</span>. More details are in the <a href="https://github.com/blog/156-subversion-importing">blog article</a> that introduced the feature.</p>
<h1>Do it yourself</h1>
<h2>svn2git</h2>
<p><a href="https://github.com/jcoglan/svn2git/tree/master">svn2git</a> is designed to provide a complete svn import. Unlike git-svn, it will create proper git tags from your svn “tags”</p>
<h2>git-svn</h2>
<p><a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a> can be used to import as well. Note that there may be issues if you have branches or tags. If you only have a trunk, like many svn users, this method should work for you without issue.</p>
<p>First, be sure to <a href="https://github.com/repositories/new">create your repository on github</a></p>
<pre class="console"> $ 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</pre>
<p>Note that the -s switch implies that your svn repo is set up with the standard branches / tags / trunk structure.</p>
<p>git-svn adds a note to every commit message it copies over from svn. To get rid of that note, add <code>--no-metadata</code> to the git svn clone command</p>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddox</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
mschrag
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2009-01-15T02:48:17-08:00
Import from Subversion - version 36
Thu Jan 15 02:48:17 -0800 2009
<h1>Let GitHub do it for you</h1>
<p>GitHub can directly import <span class="caps">SVN</span> projects. All you’ll need is the repository <span class="caps">URL</span>. More details are in the <a href="https://github.com/blog/156-subversion-importing">blog article</a> that introduced the feature.</p>
<h1>Do it yourself</h1>
<h2>svn2git</h2>
<p><a href="https://github.com/jcoglan/svn2git/tree/master">svn2git</a> is designed to provide a complete svn import. Unlike git-svn, it will create proper git tags from your svn “tags”</p>
<h2>git-svn</h2>
<p><a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a> can be used to import as well. Note that there may be issues if you have branches or tags. If you only have a trunk, like many svn users, this method should work for you without issue.</p>
<p>First, be sure to <a href="https://github.com/repositories/new">create your repository on github</a></p>
<pre class="console"> $ 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</pre>
<p>Note that the -s switch implies that your svn repo is set up with the standard branches / tags / trunk structure.</p>
<p>git-svn adds a note to every commit message it copies over from svn. To get rid of that note, add <code>--no-metadata</code> to the git svn clone command</p>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
Tobbe
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2009-01-15T02:47:22-08:00
Import from Subversion - version 35
Thu Jan 15 02:47:22 -0800 2009
<h1>Let GitHub do it for you</h1>
<p>GitHub can directly import <span class="caps">SVN</span> projects. All you’ll need is the repository <span class="caps">URL</span>. More details are in the <a href="https://github.com/blog/156-subversion-importing">blog article</a> that introduced the feature.</p>
<h1>Do it yourself</h1>
<h2>svn2git</h2>
<p><a href="https://github.com/jcoglan/svn2git/tree/master">svn2git</a> is designed to provide a complete svn import. Unlike git-svn, it will create proper git tags from your svn “tags”</p>
<h2>git-svn</h2>
<p><a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a> can be used to import as well. Note that there may be issues if you have branches or tags. If you only have a trunk, like many svn users, this method should work for you without issue.</p>
<p>First, be sure to <a href="https://github.com/repositories/new">create your repository on github</a></p>
<pre class="console"> $ 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</pre>
<p>Note that the -s switch implies that your svn repo is set up with the standard branches / tags / trunk structure.</p>
<p>git-svn adds a note to every commit message it copies over from svn. To get rid of that note, add—no-metadata to the git svn clone command</p>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
Tobbe
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2009-01-03T20:14:26-08:00
Import from Subversion - version 34
Sat Jan 03 20:14:26 -0800 2009
<h1>Let GitHub do it for you</h1>
<p>GitHub can directly import <span class="caps">SVN</span> projects. All you’ll need is the repository <span class="caps">URL</span>. More details are in the <a href="https://github.com/blog/156-subversion-importing">blog article</a> that introduced the feature.</p>
<h1>Do it yourself</h1>
<h2>svn2git</h2>
<p><a href="https://github.com/jcoglan/svn2git/tree/master">svn2git</a> is designed to provide a complete svn import. Unlike git-svn, it will create proper git tags from your svn “tags”</p>
<h2>git-svn</h2>
<p><a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a> can be used to import as well. Note that there may be issues if you have branches or tags. If you only have a trunk, like many svn users, this method should work for you without issue.</p>
<p>First, be sure to <a href="https://github.com/repositories/new">create your repository on github</a></p>
<pre class="console"> $ 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</pre>
<p>Note that the -s switch implies that your svn repo is set up with the standard branches / tags / trunk structure.</p>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-12-31T13:11:27-08:00
Import from Subversion - version 33
Wed Dec 31 13:11:27 -0800 2008
<h1>Let GitHub do it for you</h1>
<p>GitHub can directly import <span class="caps">SVN</span> projects. All you’ll need is the repository <span class="caps">URL</span>. More details are in the <a href="https://github.com/blog/156-subversion-importing">blog article</a> that introduced the feature.</p>
<h1>Do it yourself</h1>
<h2>svn2git</h2>
<p><a href="https://github.com/jcoglan/svn2git/tree/master">svn2git</a> is designed to provide a complete svn import. Unlike git-svn, it will create proper git tags from your svn “tags”</p>
<h2>git-svn</h2>
<p><a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a> can be used to import as well. Note that there may be issues if you have branches or tags. If you only have a trunk, like many svn users, this method should work for you without issue.</p>
<p>First, be sure to <a href="https://github.com/repositories/new">create your repository on github</a></p>
<pre class="console"> $ 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</pre>
<p>Note that the -s switch implies that your svn repo is set up with the standard branches / tags / trunk structure.</p>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
tekkub
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-10-13T03:08:30-07:00
Import from Subversion - version 32
Mon Oct 13 03:08:30 -0700 2008
<h1>The Easy Way</h1>
<p>Github can directly import <span class="caps">SVN</span> projects. All you’ll need is the repository <span class="caps">URL</span>. More details are in the <a href="https://github.com/blog/156-subversion-importing">blog article</a> that introduced the feature.</p>
<h1>The Less Easy Way</h1>
<p>The automatic way doesn’t suit your needs? No problem, just use <a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a></p>
<p>First, be sure to <a href="https://github.com/repositories/new">create your repository on github</a></p>
<pre class="console"> $ 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</pre>
<p>Note that the -s switch implies that your svn repo is set up with the standard branches / tags / trunk structure.</p>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
nydusmedia
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-10-07T06:06:17-07:00
Import from Subversion - version 31
Tue Oct 07 06:06:17 -0700 2008
<h1>The Easy Way</h1>
<p>Github can directly import <span class="caps">SVN</span> projects. All you’ll need is the repository <span class="caps">URL</span>. More details are in the <a href="https://github.com/blog/156-subversion-importing">blog article</a> that introduced the feature.</p>
<h1>The Less Easy Way</h1>
<p>The automatic way doesn’t suit your needs? No problem, just use <a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a></p>
<p>First, be sure to create your repository on github https://github.com/repositories/new</p>
<pre class="console"> $ 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</pre>
<p>Note that the -s switch implies that your svn repo is set up with the standard branches / tags / trunk structure.</p>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
MattHall
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-10-07T06:05:05-07:00
Import from Subversion - version 30
Tue Oct 07 06:05:05 -0700 2008
<h1>The Easy Way</h1>
<p>Github can directly import <span class="caps">SVN</span> projects. All you’ll need is the repository <span class="caps">URL</span>. More details are in the <a href="https://github.com/blog/156-subversion-importing">blog article</a> that introduced the feature.</p>
<h1>The Less Easy Way</h1>
<p>The automatic way doesn’t suit your needs? No problem, just use <a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a></p>
<p>First, be sure to create your repository on github https://github.com/repositories/new</p>
<pre class="console"> $ 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</pre>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
MattHall
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-10-06T05:27:31-07:00
Import from Subversion - version 29
Mon Oct 06 05:27:31 -0700 2008
<h1>The Easy Way</h1>
<p>Github can directly import <span class="caps">SVN</span> projects. All you’ll need is the repository <span class="caps">URL</span>. More details are in the <a href="https://github.com/blog/156-subversion-importing">blog article</a> that introduced the feature.</p>
<h1>The Less Easy Way</h1>
<p>The automatic way doesn’t suit your needs? No problem, just use <a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a></p>
<p>First, be sure to create your repository on github https://github.com/repositories/new</p>
<pre class="console"> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</pre>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
dougbarth
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-10-06T05:27:20-07:00
Import from Subversion - version 28
Mon Oct 06 05:27:20 -0700 2008
<h1>The Easy Way</h1>
<p>Github can directly import <span class="caps">SVN</span> projects. All you’ll need is the repository <span class="caps">URL</span>. More details are in the <a href="https://github.com/blog/156-subversion-importing">blog article</a> that introduced the feature.</p>
<h2>The Less Easy Way</h2>
<p>The automatic way doesn’t suit your needs? No problem, just use <a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a></p>
<p>First, be sure to create your repository on github https://github.com/repositories/new</p>
<pre class="console"> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</pre>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
dougbarth
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-10-06T05:27:06-07:00
Import from Subversion - version 27
Mon Oct 06 05:27:06 -0700 2008
<h1>The Easy Way</h1>
<p>Github can directly import <span class="caps">SVN</span> projects. All you’ll need is the repository <span class="caps">URL</span>. More details are in the <a href="https://github.com/blog/156-subversion-importing">blog article</a> that introduced the feature.</p>
<h2>The Less Easy Way
The automatic way doesn’t suit your needs? No problem, just use <a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a></h2>
<p>First, be sure to create your repository on github https://github.com/repositories/new</p>
<pre class="console"> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</pre>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
dougbarth
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-09-21T07:04:48-07:00
Import from Subversion - version 26
Sun Sep 21 07:04:48 -0700 2008
<p>Have a Subversion project you want to import into Git? Easy! Just use <a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a></p>
<p>First, be sure to create your repository on github https://github.com/repositories/new</p>
<pre class="console"> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</pre>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
alec
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-09-16T11:40:04-07:00
Import from Subversion - version 25
Tue Sep 16 11:40:04 -0700 2008
<p>Have a Subversion project you want to import into Git? Easy! Just use <a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a></p>
<p>First, be sure to create your repository on github https://github.com/repositories/new</p>
<pre class="console"> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</pre>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
gregoryo
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-08-25T15:04:58-07:00
Import from Subversion - version 24
Mon Aug 25 15:04:58 -0700 2008
Have a Subversion project you want to import into Git? Easy! Just use <a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a>
<pre class="console"> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</pre>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
nealk3nc
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-08-04T15:12:07-07:00
Import from Subversion - version 23
Mon Aug 04 15:12:07 -0700 2008
Have a Subversion project you want to import into Git? Easy! Just use <a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a>
<pre class="console"> $ git-svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</pre>
<h3>Author mapping</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
tekkub
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-08-04T15:11:39-07:00
Import from Subversion - version 22
Mon Aug 04 15:11:39 -0700 2008
Have a Subversion project you want to import into Git? Easy! Just use <a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a>
<pre class="console"> $ git-svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</pre>
<p>h3 Author mapping</p>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
tekkub
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-08-04T15:11:12-07:00
Import from Subversion - version 21
Mon Aug 04 15:11:12 -0700 2008
Have a Subversion project you want to import into Git? Easy! Just use <a href="https://www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a>
<pre class="console"> $ git-svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</pre>
<h2>Author mapping</h2>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
<h2>Other guides</h2>
<ul>
<li><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">Guide by Jon Maddoxx</a></li>
<li><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">Guide by Daniel Morrison</a></li>
</ul>
tekkub
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-08-04T15:08:10-07:00
Import from Subversion - version 20
Mon Aug 04 15:08:10 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre class="console"> $ git-svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</pre>
<h3>Authors</h3>
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:
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
Then clone the subversion repository with the previously created <code>authors-file</code>:
<pre class="console">$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</pre>
tekkub
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-08-04T15:07:12-07:00
Import from Subversion - version 19
Mon Aug 04 15:07:12 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre class="console"> $ git-svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</pre>
<h3>Authors</h3>
<p>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:</p>
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
<p>Then clone the subversion repository with the previously created <code>authors-file</code>:</p>
<pre><code>$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</code></pre>
tekkub
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-08-04T15:06:51-07:00
Import from Subversion - version 18
Mon Aug 04 15:06:51 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre style="console">$ git-svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</pre>
<h3>Authors</h3>
<p>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:</p>
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
<p>Then clone the subversion repository with the previously created <code>authors-file</code>:</p>
<pre><code>$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</code></pre>
tekkub
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-06-29T12:34:56-07:00
Import from Subversion - version 17
Sun Jun 29 12:34:56 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre><code> $ git-svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</code></pre>
<h3>Authors</h3>
<p>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:</p>
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
<p>Then clone the subversion repository with the previously created <code>authors-file</code>:</p>
<pre><code>$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</code></pre>
elazar
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-05-31T12:53:52-07:00
Import from Subversion - version 16
Sat May 31 12:53:52 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre><code> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</code></pre>
<h3>Authors</h3>
<p>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:</p>
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
<p>Then clone the subversion repository with the previously created <code>authors-file</code>:</p>
<pre><code>$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</code></pre>
chrisk
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-05-31T12:52:26-07:00
Import from Subversion - version 15
Sat May 31 12:52:26 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre><code> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</code></pre>
<h3>Authors</h3>
<p>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:</p>
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
<p>Then clone the subversion repository with the previously created `authors-file`:</p>
<pre><code>$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</code></pre>
chrisk
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-05-20T07:44:04-07:00
Import from Subversion - version 14
Tue May 20 07:44:04 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre><code> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</code></pre>
<h3>Authors</h3>
<p>When importing a Subversion repository to Git you have the possibility to “map” the Subversion users to Git users. You have to create an authors file which contains those “mappings”.</p>
<pre>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></pre>
<p>And then clonning the subversion repository with the previously created `authors-file`</p>
<pre><code>$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</code></pre>
fesplugas
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-05-20T07:43:46-07:00
Import from Subversion - version 13
Tue May 20 07:43:46 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre><code> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</code></pre>
<h3>Authors</h3>
<p>When importing a Subversion repository to Git you have the possibility to “map” the Subversion users to Git users. You have to create an authors file which contains those “mappings”.</p>
<pre>
fesplugas = Francesc Esplugas <fesplugas@intra....bles.net>
</pre>
<p>And then clonning the subversion repository with the previously created `authors-file`</p>
<pre><code>$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</code></pre>
fesplugas
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-05-20T07:43:21-07:00
Import from Subversion - version 12
Tue May 20 07:43:21 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre><code> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</code></pre>
<h3>Authors</h3>
<p>When importing a Subversion repository to Git you have the possibility to “map” the Subversion users to Git users. You have to create an authors file which contains those “mappings”.</p>
<pre><code>fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></code></pre>
<p>And then clonning the subversion repository with the previously created `authors-file`</p>
<pre><code>$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</code></pre>
fesplugas
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-05-20T07:43:01-07:00
Import from Subversion - version 11
Tue May 20 07:43:01 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre><code> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</code></pre>
<h3>Authors</h3>
<p>When importing a Subversion repository to Git you have the possibility to “map” the Subversion users to Git users. You have to create an authors file which contains those “mappings”.</p>
<ol>
<li>Authors File
fesplugas = Francesc Esplugas <fesplugas@intra....bles.net></li>
</ol>
<p>And then clonning the subversion repository with the previously created `authors-file`</p>
<pre><code>$ git-svn --authors-file=/home/fesplugas/.authors clone svn://intraducibles.net/var/svn/rails/plugins/something_fu something_fu</code></pre>
fesplugas
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-04-19T01:50:21-07:00
Import from Subversion - version 10
Sat Apr 19 01:50:21 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre><code> $ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master</code></pre>
greatseth
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-04-19T01:50:01-07:00
Import from Subversion - version 9
Sat Apr 19 01:50:01 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre><code>
$ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master
</code></pre>
greatseth
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-03-11T12:05:59-07:00
Import from Subversion - version 8
Tue Mar 11 12:05:59 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre><code>
$ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master
</code></code>
mattetti
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-03-11T12:05:27-07:00
Import from Subversion - version 7
Tue Mar 11 12:05:27 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p>https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</p>
<p>Or use git-svn:</p>
<pre><code>
$ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master
</code></code>
mattetti
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-03-11T12:04:04-07:00
Import from Subversion - version 6
Tue Mar 11 12:04:04 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p>https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</p>
<p>Or use git-svn:</p>
<code>$ git svn clone SVN_REPO_URL LOCAL_DIR</code>
<code>$ cd LOCAL_DIR</code>
<code>$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git</code>
<code>$ git push origin master</code>
mattetti
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-03-11T12:03:32-07:00
Import from Subversion - version 5
Tue Mar 11 12:03:32 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p>https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</p>
<p>Or use git-svn:</p>
<code>
$ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master
</code>
mattetti
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-03-11T12:03:02-07:00
Import from Subversion - version 4
Tue Mar 11 12:03:02 -0700 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
<p>Or check out the guide by Daniel Morrison:</p>
<p>https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</p>
<p>Or use git-svn:</p>
<code>
$ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master
</code>
mattetti
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-03-08T09:26:56-08:00
Import from Subversion - version 3
Sat Mar 08 09:26:56 -0800 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Jon Maddoxx:</p>
<p><a href="https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/">https://www.simplisticcomplexity.com/2008/03/05/cleanly-migrate-your-subversion-repository-to-a-git-repository/</a></p>
jnewland
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-03-01T06:48:37-08:00
Import from Subversion - version 2
Sat Mar 01 06:48:37 -0800 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
<p>Or use git-svn:</p>
<pre>
$ git svn clone SVN_REPO_URL LOCAL_DIR
$ cd LOCAL_DIR
$ git remote add origin git@github.com:GITHUB_USERNAME/REPO_NAME.git
$ git push origin master
</pre>
jnewland
tag:github.com,2008:Guide/11
2008-02-15T14:36:04-08:00
2008-02-15T14:36:04-08:00
Import from Subversion - version 1
Fri Feb 15 14:36:04 -0800 2008
<p>Have a Subversion project you want to import into Git? Check out the guide by Daniel Morrison:</p>
<p><a href="https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github">https://daniel.collectiveidea.com/blog/2008/2/9/on-git-github</a></p>
defunkt