summaryrefslogtreecommitdiff
path: root/_posts/2009-06-25-moving-a-repo.textile
diff options
context:
space:
mode:
authortekkub <tekkub@gmail.com>2009-07-27 01:51:05 -0600
committertekkub <tekkub@gmail.com>2009-07-27 01:51:05 -0600
commit6e4eaa1e31846f42fa50cee48b73bf0079e9aba6 (patch)
treef826efbca5942d4cf3e19ee95a936a2948166563 /_posts/2009-06-25-moving-a-repo.textile
parentb5a95e8c10b04c5d2add56c9d9815113149adf3f (diff)
Make pretty console pre blocks
Diffstat (limited to '_posts/2009-06-25-moving-a-repo.textile')
-rw-r--r--_posts/2009-06-25-moving-a-repo.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2009-06-25-moving-a-repo.textile b/_posts/2009-06-25-moving-a-repo.textile
index d817cea..461ebcf 100644
--- a/_posts/2009-06-25-moving-a-repo.textile
+++ b/_posts/2009-06-25-moving-a-repo.textile
@@ -16,7 +16,7 @@ p(. _If you forked this step is not necessary, but you may still do it for good
To create a complete mirror that includes all branches and tags, you need to do a bare-clone followed by a mirror-push:
-<pre>git clone --bare git@github.com:myaccount/my-old-repo.git
+<pre class="terminal">git clone --bare git@github.com:myaccount/my-old-repo.git
cd my-old-repo
git push --mirror git@github.com:mycompany/our-new-repo.git
cd ..