Home ›
Manually add a new repository to the Agaric test serverManually add a new repository to the Agaric test server
Searched words:
git remote add initialize repos
Manually add a new repository to Agaric's test server
On the test server:
cd /srv/git/
mkdir agaric-devel-6.git
cd agaric-devel-6.git
git init --bareBack home on the ranch:
cd /RCS/git/
mkdir agaric-devel-6
cd agaric-devel-6/
git init
Initialized empty Git repository in /RCS/git/agaric-devel/.git/
git add .
wget http://ftp.drupal.org/files/projects/trace-6.x-1.0-alpha2.tar.gz
tar -xzf trace-6.x-1.0-alpha2.tar.gz
git add .
git statusI was too hasty with the add, so I had to git remove the gzip file.
git rm -f trace-6.x-1.0-alpha2.tar.gz
git commit -m "Trace module, to start off Agaric's selected development modules"
git remote add agaric git.agariclabs.com:/srv/git/agaric-devel-6.git
git push agaric master
Resolution
More like this
- Setting up the Agaric way (svn working copy checkouts) on a new server
- Git the Agaric Way: using shell scripts to add and update projects
- Locking an SVN repository (or, another reason to use Git)
- Agaric's new SVN repository layout to play well with contributing to CVS
- How to add users to or edit user passwords for a Subversion repository
Comments
Post new comment