This is the hosting location for the Gentoo Overlays using Git.
Please visit the GitWeb to browse the available Git trees.
# git clone git://git.overlays.gentoo.org/${REPO}
OR
# git clone http://git.overlays.gentoo.org/gitroot/${REPO}
This service is powered by Gitolite.
If you have any overlays requests (new repo, ACL changes, add to layman list) please file a bug, selecting Product: Gentoo Infrastructure and Component: Gentoo Overlays. For new repositories, be sure to include, category (dev, proj, user) name, description, owner, permitted committers.
Use this template for your bug.
# git clone git+ssh://git@git.overlays.gentoo.org/${REPO}# git remote add origin git+ssh://git@git.overlays.gentoo.org/${REPO}
# git push origin master:refs/heads/master
# git config --add branch.master.remote origin
# git config --add branch.master.merge refs/heads/master
For the first push, you must use the a fully qualified push
string, as the initial repository is totally empty. After that, you can use the short form.# git config --global user.email "foobar@gentoo.org" # git config --global user.name "Some Guy Committer"If you want to know more about $GIT_{COMMITTER,AUTHOR}_{NAME,EMAIL,DATE}, you should read the git-commit-tree(1) manpage.
Both of the following push URLs behave identically. You should try and stick to the git+ssh:// one if possible.
git+ssh://git@git.overlays.gentoo.org/${REPO}/
git@git.overlays.gentoo.org:${REPO}