summaryrefslogtreecommitdiff
path: root/content/git.md
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2022-08-07 14:38:49 -0400
committerLuke Smith <luke@lukesmith.xyz>2022-08-07 14:38:49 -0400
commit79404c875dbf20ba783c72b31111c6e2228d28a2 (patch)
tree1a80d0322bf9f81cf26da2204d95c98db854d93b /content/git.md
parentef1b2105e344e201e3f92ebece9d28efd58dbcac (diff)
begin rehighlighting of custom info in templates
Diffstat (limited to 'content/git.md')
-rw-r--r--content/git.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/git.md b/content/git.md
index e186cd0..f11d79d 100644
--- a/content/git.md
+++ b/content/git.md
@@ -65,7 +65,7 @@ The `-l` option should put us in `git`'s home directory, but you can `cd
Now you can create the bare repository with
```sh
-git init --bare my-repo.git
+git init --bare {{<hl>}}my-repo.git{{</hl>}}
```
By convention, bare repository names end with \".git\". (A bare repository is
@@ -104,7 +104,7 @@ How that we've set that up, we can push a repository we have on our computer to
that newly created bare repo. First, on our local computer, we run a command like this:
```sh
-git remote add origin git@example.org:my-repo.git
+git remote add origin git@{{<hl>}}example.org{{</hl>}}:{{<hl>}}my-repo.git{{</hl>}}
```
Note some of the things you will change:
@@ -116,7 +116,7 @@ Note some of the things you will change:
Once you run that command successfully to add a new remote repository, and also assuming you change `origin` to let's say the more unique `personal`, you can push your local git server as expected:
```sh
-git push personal master
+git push {{<hl>}}personal{{</hl>}} master
```
That's all a git server is! Very simple.