This wiki is for the exclusive use of my friends and colleagues. Account creation and anonymous editing have been turned off.

If you are a friend or colleague of mine, and would like to participate in this project, please send me a message.

If you find these pages useful, please donate to help cover server costs. Thanks!

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

External link icon.png

External Resources
These links should all open in a separate window.


Git on Chrome


GitHub


GitWeb

These links describe the web interface to a Git repository.

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