Difference between revisions of "Git Resources"
From OdleWiki
(Added section for GitWeb plus a couple of links) |
(→GitWeb: Added info about setting public owner and category of repos) |
||
Line 18: | Line 18: | ||
* [https://git-scm.com/docs/gitweb Git - gitweb Documentation] — Basically, all the things you can do with GitWeb | * [https://git-scm.com/docs/gitweb Git - gitweb Documentation] — Basically, all the things you can do with GitWeb | ||
* [https://git-scm.com/docs/gitweb.conf Git - gitweb.conf Documentation] — Specific information about the configuration file for GitWeb | * [https://git-scm.com/docs/gitweb.conf Git - gitweb.conf Documentation] — Specific information about the configuration file for GitWeb | ||
+ | |||
+ | To set the public owner of a repository, enter the repo in question and enter | ||
+ | |||
+ | <pre> | ||
+ | git config gitweb.owner name | ||
+ | </pre> | ||
+ | |||
+ | To set the category of a repository, enter the repo in question and enter | ||
+ | |||
+ | <pre> | ||
+ | git config gitweb.category Category | ||
+ | </pre> | ||
+ | |||
+ | Alternately, enter the repo in question and edit <code>config</code>, adding: | ||
+ | |||
+ | <pre> | ||
+ | [gitweb] | ||
+ | owner = name | ||
+ | category = Category | ||
+ | </pre> |
Revision as of 03:28, 7 June 2017
Git on Chrome
- Git and Node on a Chromebook, Without Crouton and Linux
- Chromebrew
- How Can I Use Git and Eclipse in my Chromebook
- How to Install Ubuntu Linux on Your Chromebook with Crouton
GitHub
GitWeb
These links describe the web interface to a Git repository.
- Git - gitweb Documentation — Basically, all the things you can do with GitWeb
- Git - gitweb.conf Documentation — Specific information about the configuration file for GitWeb
To set the public owner of a repository, enter the repo in question and enter
git config gitweb.owner name
To set the category of a repository, enter the repo in question and enter
git config gitweb.category Category
Alternately, enter the repo in question and edit config
, adding:
[gitweb] owner = name category = Category