summaryrefslogtreecommitdiff
path: root/wiki/git
diff options
context:
space:
mode:
authorOwen Jacobson <owen.jacobson@grimoire.ca>2013-02-15 16:16:51 -0500
committerOwen Jacobson <owen.jacobson@grimoire.ca>2013-02-15 16:16:51 -0500
commit31e4552bac8f7fa5b01bce66a41235e2a075b622 (patch)
treec47d1e7d8a9d8b6b75c4d1d8b9d132c56232ef81 /wiki/git
parentb45e1eab1839a9385fbbd41dcca4782ce0894083 (diff)
Formatting snafu in the git-from-scratch page. Thanks, @surprisingedge!
Diffstat (limited to 'wiki/git')
-rw-r--r--wiki/git/scratch.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/wiki/git/scratch.md b/wiki/git/scratch.md
index f920c77..61d2815 100644
--- a/wiki/git/scratch.md
+++ b/wiki/git/scratch.md
@@ -7,10 +7,9 @@ Git repos are stored in .git:
fakegit$ mkdir .git
They have a "symbolic ref" (which are text files, see [`man
-git-symbolic-ref`](http://jk.gs/git-symbolic-ref.html)) named `HEAD``,
-pointing to the currently checked-out branch. Let's use `master`. Branches are
-refs under `refs/heads` (see [`man
-git-branch`](http://jk.gs/git-branch.html)):
+git-symbolic-ref`](http://jk.gs/git-symbolic-ref.html)) named `HEAD`, pointing
+to the currently checked-out branch. Let's use `master`. Branches are refs
+under `refs/heads` (see [`man git-branch`](http://jk.gs/git-branch.html)):
fakegit ((unknown))$ echo 'ref: refs/heads/master' > .git/HEAD