diff options
author | gbmor <ben@gbmor.dev> | 2021-02-16 23:01:22 -0500 |
---|---|---|
committer | gbmor <ben@gbmor.dev> | 2021-02-16 23:02:17 -0500 |
commit | 01e205bbb660d25e7dcdff80435834a53ffb6c99 (patch) | |
tree | 737e672cbb7737e27294b01f8c70701d76c40b63 /pages | |
parent | e982370876c5733e390fb763cb4b381b1c0613c9 (diff) | |
download | wiki-01e205bbb660d25e7dcdff80435834a53ffb6c99.tar.gz |
added mention of the cache timeout for cgit, and mentioned the one-liner to add the repo owner to the config. suggested by ~yeti.
Diffstat (limited to 'pages')
-rw-r--r-- | pages/user-repos.md | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/pages/user-repos.md b/pages/user-repos.md index 76b4135..3fd17b6 100644 --- a/pages/user-repos.md +++ b/pages/user-repos.md @@ -15,6 +15,9 @@ bundled into `.tar.gz` archives and listed on the summary page. All repos can be viewed at [https://git.tilde.institute](https://git.tilde.institute) +**Note:** If a change doesn't appear in cgit immediately, wait a few +minutes. The cache will time out. + ## Creating the directory New users will not have to do this step. A `~/public_repos` link will @@ -51,15 +54,22 @@ Change into *that* directory and initialize a bare repo: cd foo.git; git init --bare ``` -Now that the bare repo has been created, edit the file called `config` -and append the following section: +Now that the bare repo has been created, we'll need to set some configuration +options. You may use this command from within the directory you just created: + +``` +git config --local gitweb.owner "$USER <$USER@tilde.institute>" +``` + +Or, you may manually edit the file called `config` and append the following +section: ``` [gitweb] owner = user_name <user_name@tilde.institute> ``` -Write out the text description of your repo into a file called +Then, write out the text description of your repo into a file called `description`: ``` |