dblume commited on 2024-01-12 12:18:18
Showing 1 changed files, with 13 additions and 15 deletions.
Add mention of GitHub, and fix address to git.dlma.com tarball. Remove links to ZIP and TAR as GitList doesn't add rel="nofollow".
| ... | ... |
@@ -1,26 +1,24 @@ |
| 1 | 1 |
# David Blume's dotfiles |
| 2 | 2 |
|
| 3 |
-These are some of David Blume's dot files to be installed |
|
| 4 |
-in new user home directories. |
|
| 3 |
+These are some of David Blume's dot files to be installed in new user |
|
| 4 |
+home directories. |
|
| 5 | 5 |
|
| 6 |
-### Getting the project |
|
| 6 |
+### Download the project |
|
| 7 | 7 |
|
| 8 |
-You can get a copy of this project by clicking on the |
|
| 9 |
-[ZIP](https://git.dlma.com/dotfiles.git/zipball/main) |
|
| 10 |
-or [TAR](https://git.dlma.com/dotfiles.git/tarball/main) buttons |
|
| 11 |
-near the top right of the GitList web page. |
|
| 8 |
+There are two remote repos: |
|
| 12 | 9 |
|
| 13 |
-With an account, you can clone from the origin with: |
|
| 10 |
+- **[git.dlma.com](https://git.dlma.com/dotfiles.git)**: Click Download and |
|
| 11 |
+ select Download ZIP or Download TAR. |
|
| 12 |
+- **[GitHub](https://github.com/dblume/dotfiles)**: Click the green Code button |
|
| 13 |
+ and select Local -> Download ZIP |
|
| 14 | 14 |
|
| 15 |
- git clone ssh://USERNAME@dlma.com/~/git/dotfiles.git |
|
| 15 |
+### Install from CLI |
|
| 16 | 16 |
|
| 17 |
-### Installation |
|
| 18 |
- |
|
| 19 |
-If you're not cloning the repo, then run the following: |
|
| 17 |
+Run the following: |
|
| 20 | 18 |
|
| 21 | 19 |
~$ mkdir dotfiles |
| 22 | 20 |
~$ cd dotfiles |
| 23 |
- dotfiles$ curl -L https://git.dlma.com/dotfiles.git/tarball/main > dotfiles.tar |
|
| 21 |
+ dotfiles$ curl -L https://git.dlma.com/dotfiles.git/archive/HEAD.tar > dotfiles.tar |
|
| 24 | 22 |
dotfiles$ tar -xvf dotfiles.tar |
| 25 | 23 |
dotfiles$ rm dotfiles.tar |
| 26 | 24 |
|
| ... | ... |
@@ -28,11 +26,11 @@ Then, when you run `setup.sh`, it'll backup your changed files to `backup_of_dot |
| 28 | 26 |
and replace them with the ones here. You can perform a **dry run** to see which files will |
| 29 | 27 |
be changed by passing the "-n" parameter. |
| 30 | 28 |
|
| 31 |
- dotfiles$ ./setup.sh -n |
|
| 29 |
+ ./setup.sh -n |
|
| 32 | 30 |
|
| 33 | 31 |
If you approve of the changes, then just run `setup.sh` |
| 34 | 32 |
|
| 35 |
- dotfiles$ ./setup.sh |
|
| 33 |
+ ./setup.sh |
|
| 36 | 34 |
|
| 37 | 35 |
See [config.dlma.com](http://config.dlma.com) for more. |
| 38 | 36 |
|
| 39 | 37 |