User login

Manually 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 --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
rm 'trace-6.x-1.0-alpha2.tar.gz'

git commit -m "Trace module, to start off Agaric's selected development modules"

[master (root-commit)]: created 1207279: "Trace module, to start off Agaric's selected development modules"
15 files changed, 1400 insertions(+), 0 deletions(-)
create mode 100644 trace/API.txt
create mode 100644 trace/INSTALL.txt
create mode 100644 trace/LICENSE.txt
create mode 100644 trace/README.txt
create mode 100644 trace/TODO.txt
create mode 100644 trace/drivers/file.inc
create mode 100644 trace/drivers/socket.inc
create mode 100644 trace/drivers/syslog.inc
create mode 100644 trace/hooks.ini
create mode 100644 trace/trace.admin.inc
create mode 100644 trace/trace.api.inc
create mode 100644 trace/trace.drush
create mode 100644 trace/trace.info
create mode 100644 trace/trace.install
create mode 100644 trace/trace.module

git remote add agaric git.agariclabs.com:/srv/git/agaric-devel-6.git
git push agaric master


Counting objects: 19, done.
Compressing objects: 100% (18/18), done.
Writing objects: 100% (19/19), 20.56 KiB, done.
Total 19 (delta 1), reused 0 (delta 0)
To git@git.agariclabs.com:agaric-devel-6.git
* [new branch] master -> master

Resolution

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Internal paths in single or double quotes, written as "internal:node/99", for example, are replaced with the appropriate absolute URL or path. Paths to files in single or double quotes, written as "files:somefile.ext", for example, are replaced with the appropriate URL that can be used to download the file.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.
  • You can use Markdown syntax to format and style the text. Also see Markdown Extra for tables, footnotes, and more.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <blockquote> <small> <h2> <h3> <h4> <h5> <h6> <sub> <sup> <p> <br> <strike> <table> <tr> <td> <thead> <th> <tbody> <tt> <output>
  • Syntax highlight code surrounded by the {syntaxhighlighter SPEC}...{/syntaxhighlighter} tags, where SPEC is a Syntaxhighlighter options string or "class="OPTIONS" title="the title".
  • Lines and paragraphs break automatically.

More information about formatting options

By submitting this form, you accept the Mollom privacy policy.