Posts tagged: repository

Yum – Adding repositories to search

To add repositories for Yum to search, add a file with a name of the form /etc/yum.repos.d/<xxx>.repo with the following contents. This configuration add central CentOS5 repositories.

[CentOS5base]
name=CentOS-5-Base
mirrorlist=http://mirrorlist.centos.org/?release=5&arch=$basearch&repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=0
enabled=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5

[CentOS5updates]
name=CentOS-5-Updates
mirrorlist=http://mirrorlist.centos.org/?release=5&arch=$basearch&repo=updates
gpgcheck=0
enabled=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5

[CentOS5plus]
name=CentOS-5-Plus
mirrorlist=http://mirrorlist.centos.org/?release=5&arch=$basearch&repo=centosplus
gpgcheck=0
enabled=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5

RubyGems – Stickler

Stickler – Manage gem repositories

http://copiousfreetime.rubyforge.org/stickler

GitHub – Create a new repository

GitHub

Global setup:

git config –global user.email github.10.tracyflynn@spamgourmet.com

Next steps:

mkdir testme
cd testme
git init
touch README
git add README
git commit -m ‘first commit’
git remote add origin git@github.com:tflynn/testme.git
git push origin master

Existing Git Repo?

cd existing_git_repo
git remote add origin git@github.com:tflynn/testme.git
git push origin master

When you’re done:

Continue

WordPress Themes