Git.alt reference: Difference between revisions
(Added a link to the page in Russian) |
(Translated sections about clone and init-db) |
||
Line 98: | Line 98: | ||
The second column in <tt>find-package</tt> output is a unixtime of the last repo update. | The second column in <tt>find-package</tt> output is a unixtime of the last repo update. | ||
==== clone ==== | |||
'''$ ssh git.alt clone <path to git repository> [<destination directory>]''' | '''$ ssh git.alt clone <path to git repository> [<destination directory>]''' | ||
This command clones a repository, i.e. makes a copy of a repository in the specified directory (or in <tt>packages</tt> directory, if none specified) so that you can start hacking on it. | |||
$ ssh git.alt clone /people/ldv/glibc.git | $ ssh git.alt clone /people/ldv/glibc.git | ||
Line 110: | Line 108: | ||
$ | $ | ||
You can also specify a repository name instead of just a destination directory as the second parameter: | |||
$ ssh git.alt clone /people/ldv/glibc.git public | $ ssh git.alt clone /people/ldv/glibc.git public | ||
Line 118: | Line 116: | ||
$ | $ | ||
You can also clone a repository from outside <tt>git.alt</tt>: | |||
$ ssh git.alt clone <nowiki>http://github.com/dottedmag/madshelf.git</nowiki> public | $ ssh git.alt clone <nowiki>http://github.com/dottedmag/madshelf.git</nowiki> public | ||
Line 130: | Line 128: | ||
'''$ ssh git.alt init-db <path to directory>''' | '''$ ssh git.alt init-db <path to directory>''' | ||
Creates a new Git repo. By default, the repo is created in <tt>packages</tt>. | |||
$ ssh git.alt init-db test | $ ssh git.alt init-db test | ||
Initialized empty Git repository in ./ | Initialized empty Git repository in ./ | ||
girar-init-db: /people/dottedmag/packages/test.git | girar-init-db: /people/dottedmag/packages/test.git | ||
Or you can pass a path and a name of the repo as the only parameter: | |||
$ ssh git.alt init-db public/test | $ ssh git.alt init-db public/test | ||
Initialized empty Git repository in ./ | Initialized empty Git repository in ./ | ||
girar-init-db: /people/dottedmag/public/test.git | girar-init-db: /people/dottedmag/public/test.git | ||
==== mv-db ==== | <!--==== mv-db ==== | ||
'''$ ssh git.alt mv-db <path to source directory> <path to destination directory>''' | '''$ ssh git.alt mv-db <path to source directory> <path to destination directory>''' |
Revision as of 10:03, 16 August 2008
How to use
git.alt provides the following kinds of access to the repositories:
- SSH. Special commands are provided: repos search, cloning, creation, deletion, build invocation and control, and some auxiliary ones.
- ssh:, git:, http: provide immediate access to repositories. With git: and http: you can only do read-only operations, ssh: gives read-write access.
- Web interface. It is located here: http://git.altlinux.org/ and provides repos navigation and gitweb for each individual repo.
SSH access to git.alt is only granted to persons who joined ALT Linux Team.
SSH access
You can use git.alt via SSH at git.altlinux.org:222. The login name is your ALT Linux Team username with _ (underscores) instead of - (hyphens), if there are any.
Here is an example of an entry in your ~/.ssh/config file:
Host git.alt HostName git.altlinux.org Port 222 User git_USERNAME
If your are behind a proxy, most ports are blocked etc., you can also access SSH with the address git.altlinux.org:443.
The list of available commands is displayed, when you login to SSH without commands or with help command:
$ ssh git.alt help Available commands: help git-receive-pack <directory> git-upload-pack <directory> charset <path to git repository> [<charset>] clone <path to git repository> [<path to directory>] find-package <pattern> init-db <path to directory> ls [<path to directory>] mv-db <path to source directory> <path to destination directory> quota rm-db <path to git repository> task {list|new|show|drop|add|run} ... build <path to gear repository> <tag name> [<binary package repository name>] [<project name>] $
In all commands, the .git suffix for repositories is optional and may be omitted; but in the output of commands this suffix is always appended.
ls
$ ssh git.alt ls [<directory>]
Similar to UNIX ls, this command lets you see contents of directories at git.alt:
$ ssh git.alt ls /people/dottedmag/public total 24 drwxr-sr-x 5 4096 Jun 13 10:22 bugzilla-repo-sync.git ... drwxr-sr-x 5 4096 Jul 7 18:03 wackoconvert.git $
The command issued without parameters displays the contents of /people/$USERNAME:
$ ssh git.alt ls total 16 drwxr-s--- 5 4096 May 30 21:27 etc drwxr-sr-x 14 4096 Aug 13 23:53 packages drwxr-s--x 2 4096 Feb 13 2007 private drwxr-sr-x 8 4096 Aug 13 23:57 public $
The same directory is used as a base for relative paths:
$ ssh git.alt ls public total 24 drwxr-sr-x 5 4096 Jun 13 10:22 bugzilla-repo-sync.git ... drwxr-sr-x 5 4096 Jul 7 18:03 wackoconvert.git $
find-package
$ ssh git.alt find-package <pattern>
This command searches repositories with names matching <pattern>. The only wildcard character allowed in <pattern> is * (asterisk). It is assumed that all public gear-repos are located in packages directories of each user, so repos are only searched in these directories.
$ ssh git.alt find-package glibc* /people/avm/packages/glibc.git 1216320095 ... /people/peet/packages/glibc-kernheaders.git 1177084354 /people/mike/packages/glibc-kvercheck.git 1160664813 $ ssh git.alt find-package glibc /people/avm/packages/glibc.git 1216320095 ... /people/peet/packages/glibc.git 1177084600 $
The second column in find-package output is a unixtime of the last repo update.
clone
$ ssh git.alt clone <path to git repository> [<destination directory>]
This command clones a repository, i.e. makes a copy of a repository in the specified directory (or in packages directory, if none specified) so that you can start hacking on it.
$ ssh git.alt clone /people/ldv/glibc.git Initialized empty Git repository in /people/dottedmag/packages/glibc.git/ $
You can also specify a repository name instead of just a destination directory as the second parameter:
$ ssh git.alt clone /people/ldv/glibc.git public Initialized empty Git repository in /people/dottedmag/public/glibc.git/ $ ssh git.alt clone /people/ldv/glibc.git public/test Initialized empty Git repository in /people/dottedmag/public/test.git/ $
You can also clone a repository from outside git.alt:
$ ssh git.alt clone http://github.com/dottedmag/madshelf.git public Initialized empty Git repository in /people/dottedmag/packages/public.git/ Getting alternates list for http://github.com/dottedmag/madshelf.git ... walk 03d18e21d85fa30fc3ac8d921eb391e2a7bb242a $
init-db
$ ssh git.alt init-db <path to directory>
Creates a new Git repo. By default, the repo is created in packages.
$ ssh git.alt init-db test Initialized empty Git repository in ./ girar-init-db: /people/dottedmag/packages/test.git
Or you can pass a path and a name of the repo as the only parameter:
$ ssh git.alt init-db public/test Initialized empty Git repository in ./ girar-init-db: /people/dottedmag/public/test.git