summaryrefslogtreecommitdiff
path: root/_posts/2010-10-14-git-cheat-sheets.textile
diff options
context:
space:
mode:
authorCameron McEfee <cameron@github.com>2011-05-16 10:23:11 -0700
committerCameron McEfee <cameron@github.com>2011-05-16 16:55:31 -0700
commit2575b8a597d3febb0088d02fb64214c3dbd5fd57 (patch)
tree8f8b953553b065fb604af179f0047ea9585dbfa4 /_posts/2010-10-14-git-cheat-sheets.textile
parent836ff8f64638d8bdcdb96e7baa650e998dd663c4 (diff)
bring documentation in line with new styles
Diffstat (limited to '_posts/2010-10-14-git-cheat-sheets.textile')
-rw-r--r--_posts/2010-10-14-git-cheat-sheets.textile6
1 files changed, 3 insertions, 3 deletions
diff --git a/_posts/2010-10-14-git-cheat-sheets.textile b/_posts/2010-10-14-git-cheat-sheets.textile
index acbb337..50b5449 100644
--- a/_posts/2010-10-14-git-cheat-sheets.textile
+++ b/_posts/2010-10-14-git-cheat-sheets.textile
@@ -24,7 +24,7 @@ identify yourself to git: email and your name
@git config --global user.name "David Beckwith"@
-@git config --global user.email "dbitsolutions@@@gmail.com"@
+<p><code>git config --global user.email "dbitsolutions@gmail.com"</code></p>
To view all options:
@@ -241,7 +241,7 @@ h4. Setting up a repository for use on a remote server
Copy up your repository. e.g.:
-@scp -r my_project deploy@@@yourbox.com:my_project@
+<p><code>scp -r my_project deploy@yourbox.com:my_project</code></p>
Move your files on the remote server to @/var/git/my_project@
For security make the owner of this project git
@@ -253,7 +253,7 @@ Then (for security) restrict the "deploy" user to doing git-related things in @/
h4. Checking out a git repository from a remote to your local storage
- @git clone git@@@yourbox.com:/var/git/my_project@
+ <p><code>git clone git@yourbox.com:/var/git/my_project</code></p>
h4. Viewing extra info about a remote repository