Manually add a new repository to the Agaric test server
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 --bare
Back 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 status
On branch master
#
Initial commit
#
Changes to be committed:
(use "git rm --cached ..." to unstage)
#
new file: trace-6.x-1.0-alpha2.tar.gz
new file: trace/API.txt
new file: trace/INSTALL.txt
new file: trace/LICENSE.txt
new file: trace/README.txt
new file: trace/TODO.txt
new file: trace/drivers/file.inc
new file: trace/drivers/socket.inc
new file: trace/drivers/syslog.inc
new file: trace/hooks.ini
new file: trace/trace.admin.inc
new file: trace/trace.api.inc
new file: trace/trace.drush
new file: trace/trace.info
new file: trace/trace.install
new file: trace/trace.module
I 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
- Locking an SVN repository (or, another reason to use Git)
- Setting up the Agaric way (svn working copy checkouts) on a new server
- How to add users to or edit user passwords for a Subversion repository
- Testing out the new direction for Drush, which has seen the matrix and can now step outside of Drupal
- Git the Agaric Way: using shell scripts to add and update projects


Comments
Post new comment