Skip to content

Commit 30dbb08

Browse files
author
jordanmccullough
committed
Apply column formatting with minimally invasive non-Markdown
1 parent 71c6c85 commit 30dbb08

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

downloads/subversion-migration.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: Subversion to Git Migration
44
byline: When migrating from Subversion to Git, there’s a vocabulary and command set to learn, in addition to the new capabilities only afforded by Git. This cheat sheet aims to help you in your transition between the classic Subversion technology and the modern use of Git with the GitHub collaboration platform.
55
---
66

7+
{% capture migration %}
78
## Migrating
8-
99
### GitHub importer
1010

1111
For Internet-accessible projects, GitHub.com provides Importer for automatic migration and repository creation from Subversion, Team Foundation Server, Mercurial, or alternatively-hosted Git version controlled projects.
@@ -33,8 +33,13 @@ Notable features of SVN2Git include:
3333
Learn more about SVN2Git at the project’s official home page:
3434

3535
[https://github.com/nirvdrum/svn2git](https://github.com/nirvdrum/svn2git)
36+
{% endcapture %}
3637

38+
<div class="col-md-6">
39+
{{ migration | markdownify }}
40+
</div>
3741

42+
{% capture bridging %}
3843
## Bridging
3944

4045
### Leveraging Git’s support of SVN
@@ -72,6 +77,11 @@ git svn rebase
7277
```
7378

7479
Keep in mind this action rewrites your local Git history and your commit identifiers will be different.
80+
{% endcapture %}
81+
82+
<div class="col-md-6">
83+
{{ bridging | markdownify }}
84+
</div>
7585

7686

7787
## Understanding

0 commit comments

Comments
 (0)