summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortekkub <tekkub@gmail.com>2010-06-03 16:05:12 -0600
committertekkub <tekkub@gmail.com>2010-06-03 16:05:12 -0600
commit3898a91c3934ba31e8628d28c24fab94f430a25b (patch)
treea6ae2762d683a0e5df6102e8407d6b73b0bb00c3
parentede7247f066db59e71537e827258e7cb6a4b9ca1 (diff)
wrong class
-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
------------