summaryrefslogtreecommitdiff
path: root/_posts
diff options
context:
space:
mode:
Diffstat (limited to '_posts')
-rw-r--r--_posts/2010-06-02-svn-importing.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/_posts/2010-06-02-svn-importing.markdown b/_posts/2010-06-02-svn-importing.markdown
index a349887..328be22 100644
--- a/_posts/2010-06-02-svn-importing.markdown
+++ b/_posts/2010-06-02-svn-importing.markdown
@@ -23,7 +23,7 @@ Manual import
First, be sure to [create your repository on GitHub](http://github.com/repositories/new)
-<pre class="console">$ git svn clone -s SVN_REPO_URL LOCAL_DIR
+<pre class="terminal">$ 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>
@@ -44,7 +44,7 @@ The format is `svnuser = gituser_name <gituser_email>`. To automatically genera
Once your authors file is complete, clone the subversion repository with the authors file:
-<pre class="console">$ git svn --authors-file=path/to/authors_file clone SVN_REPO_URL LOCAL_DIR</pre>
+<pre class="terminal">$ git svn --authors-file=path/to/authors_file clone SVN_REPO_URL LOCAL_DIR</pre>
Other guides
------------