mirror of
https://github.com/tildeclub/site.git
synced 2026-07-24 23:59:24 +00:00
Transpose Unicode spaces
Transform Unicode spaces to plain whitespaces in wiki/source/*.md files. Signed-off-by: keyboardan <keyboardan@tilde.club>
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: using cgit on tilde.club
|
title: using cgit on tilde.club
|
||||||
author: deepend
|
author:
|
||||||
|
- deepend
|
||||||
|
- keyboardan
|
||||||
category: tutorials
|
category: tutorials
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -15,7 +17,7 @@ Below is the quick‑start plus a few tips.
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1 Create the **public\_git** directory (once)
|
## 1. Create the **public\_git** directory (once)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ mkdir -p ~/public_git
|
$ mkdir -p ~/public_git
|
||||||
@@ -25,7 +27,7 @@ The web server is already allowed to traverse `~/public_git`, so you do **not**
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 2 Add a repository
|
## 2. Add a repository
|
||||||
|
|
||||||
Only **bare** repos are accepted (they have no working tree inside them).
|
Only **bare** repos are accepted (they have no working tree inside them).
|
||||||
|
|
||||||
@@ -49,7 +51,7 @@ You can repeat for as many repos as you like; just keep each one directly in
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 3 Browse your repos
|
## 3. Browse your repos
|
||||||
|
|
||||||
```
|
```
|
||||||
Index page : https://tilde.club/~<username>/git/
|
Index page : https://tilde.club/~<username>/git/
|
||||||
@@ -63,12 +65,12 @@ https://tilde.club/~deepend/git/ # lists everything
|
|||||||
https://tilde.club/~deepend/git/hello.git/ # specific repo
|
https://tilde.club/~deepend/git/hello.git/ # specific repo
|
||||||
```
|
```
|
||||||
|
|
||||||
The header will say `~deepend Git Repositories`, commits are clickable, diffs
|
The header will say `~deepend Git Repositories`, commits are clickable, diffs
|
||||||
are highlighted, and the cloning URL is shown near the top right.
|
are highlighted, and the cloning URL is shown near the top right.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 4 Update a repository
|
## 4. Update a repository
|
||||||
|
|
||||||
Because the repo is bare you **push** into it; cgit shows the new state
|
Because the repo is bare you **push** into it; cgit shows the new state
|
||||||
immediately.
|
immediately.
|
||||||
@@ -80,7 +82,7 @@ $ git push --mirror tilde # full mirror (branches + tags)
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 5 Remove a repository
|
## 5. Remove a repository
|
||||||
|
|
||||||
Simply delete or rename the directory:
|
Simply delete or rename the directory:
|
||||||
|
|
||||||
@@ -122,4 +124,4 @@ https://tilde.club/~<username>/git/<repo>.git
|
|||||||
---
|
---
|
||||||
|
|
||||||
Happy hacking, and show off your code!
|
Happy hacking, and show off your code!
|
||||||
Questions? `#club` on irc.newnet.net or mail **[root@tilde.club](mailto:root@tilde.club)**.
|
Questions? `#club` on irc.newnet.net or mail **[root@tilde.club](mailto:root@tilde.club)**.
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: command line for absolute beginners
|
title: command line for absolute beginners
|
||||||
author: cmccabe
|
author:
|
||||||
|
- cmccabe
|
||||||
|
- keyboardan
|
||||||
category: tutorials
|
category: tutorials
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -235,7 +237,7 @@ home directory. Verify this with `ls` in your home directory and in
|
|||||||
|
|
||||||
### Delete Files and Directories, with `rm` and `rmdir`
|
### Delete Files and Directories, with `rm` and `rmdir`
|
||||||
|
|
||||||
As long as you're in one of your own directories (e.g. your home, or
|
As long as you're in one of your own directories (e.g. your home, or
|
||||||
'downloads' or 'public\_html'), you can create a new files. Create a new
|
'downloads' or 'public\_html'), you can create a new files. Create a new
|
||||||
file called 'testtrash.txt':
|
file called 'testtrash.txt':
|
||||||
|
|
||||||
@@ -393,7 +395,7 @@ read, write or execute it.
|
|||||||
If you don't own a file, then you can't change its mode. This is a basic
|
If you don't own a file, then you can't change its mode. This is a basic
|
||||||
security principle in GNU+Linux systems.
|
security principle in GNU+Linux systems.
|
||||||
|
|
||||||
For the files you own (i.e. the files within your home directory), you
|
For the files you own (i.e. the files within your home directory), you
|
||||||
can change the file modes yourself. You do this using the "change mode"
|
can change the file modes yourself. You do this using the "change mode"
|
||||||
command, `chmod`.
|
command, `chmod`.
|
||||||
|
|
||||||
@@ -471,7 +473,7 @@ List of Common Programs
|
|||||||
`weechat`, `irssi` - for irc
|
`weechat`, `irssi` - for irc
|
||||||
|
|
||||||
`scp` - for securely moving files between networked systems. this copies
|
`scp` - for securely moving files between networked systems. this copies
|
||||||
files (i.e. 'cp') over ssh, hence 'scp'
|
files (i.e. 'cp') over ssh, hence 'scp'
|
||||||
|
|
||||||
`lynx` - web browsing
|
`lynx` - web browsing
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user