Skip to content

Commit 8915767

Browse files
committed
Removed list from README.
1 parent 69eb865 commit 8915767

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,27 @@ A major design goal of `git-mirror` is that it should just work with as little c
66

77
## Get started
88

9-
1. Download and extract the latest release from the [releases page](https://github.com/beefsack/git-mirror/releases).
10-
1. Create `config.toml` similar to:
9+
Download and extract the latest release from the [releases page](https://github.com/beefsack/git-mirror/releases).
10+
11+
Create `config.toml` similar to:
12+
1113
```toml
1214
[[repo]]
1315
Origin = "https://github.com/beefsack/git-mirror.git"
1416
```
1517
By default it will update the mirror every **15 minutes** and will serve the mirror over HTTP using port **8080**. You can specify as many repos as you want by having multiple `[[repo]]` sections.
16-
1. Run `git-mirror` with the path to the config file:
18+
19+
Run `git-mirror` with the path to the config file:
20+
1721
```bash
1822
$ ./git-mirror config.toml
1923
2015/05/07 11:08:06 starting web server on :8080
2024
2015/05/07 11:08:06 updating github.com/beefsack/git-mirror.git
2125
2015/05/07 11:08:08 updated github.com/beefsack/git-mirror.git
2226
```
23-
1. Now you can clone from your mirror on the default port of `8080`:
27+
28+
Now you can clone from your mirror on the default port of `8080`:
29+
2430
```bash
2531
$ git clone http://localhost:8080/github.com/beefsack/git-mirror.git
2632
Cloning into 'git-mirror'...

0 commit comments

Comments
 (0)