Differences between revisions 95 and 96
Revision 95 as of 2009-11-30 13:39:52
Size: 8672
Editor: OsamuAoki
Comment:
Revision 96 as of 2009-12-02 12:21:21
Size: 7879
Editor: OsamuAoki
Comment:
Deletions are marked like this. Additions are marked like this.
Line 24: Line 24:
 * [[http://www.debian.org/doc/ddp|Debian Documentation project]] - moved to SVN
   * SVN+SSH: "{{{$ svn co svn+ssh://svn.debian.org/svn/ddp/ ddp}}}" (r/w - whole DDP tree)
   * SVN+SSH: "{{{$ svn co svn+ssh://svn.debian.org/svn/ddp/manuals/trunk manuals}}}" (r/w - just manuals)
   * SVN+SSH: "{{{$ svn co svn+ssh://svn.debian.org/svn/ddp/manuals/trunk/quick-reference qref}}}" (r/w - just Debian Reference)
   * HTTP: [[http://svn.debian.org/wsvn/ddp/manuals/trunk/]]
   * README.source: [[http://svn.debian.org/wsvn/ddp/manuals/trunk/quick-reference/README.source]]
   * [[http://www-master.debian.org/build-logs/ddp/]] - DDP build results
 * [[http://www.debian.org/devel/website/|Debian web pages]] - still CVS is official
   * CVS+SSH: "{{{cvs -d :ext:cvs.alioth.debian.org:/cvsroot/webwml checkout -d webwml .}}}" (r/w)
   * HTTP: [[https://alioth.debian.org/scm/viewvc.php/?root=webwml]]
 * [[http://alioth.debian.org/projects/debiandoc-sgml/|DebianDoc-SGML]]
  * Homepage: http://alioth.debian.org/projects/debiandoc-sgml/
  * HTTP: http://git.debian.org/?p=debiandoc-sgml/debiandoc-sgml.git
  * GIT: see below
  * old git://git.debian.org/~osamu/debiandoc-sgml.git
  * old HTTP: [[http://alioth.debian.org/plugins/scmcvs/cvsweb.php/?cvsroot=debiandoc-sgml]]
  * old CVS: "{{{ cvs -d :ext:developername@cvs.alioth.debian.org:/cvsroot/debiandoc-sgml checkout modulename}}}"
 * im-switch
   * HTTP: [[http://kmuto.jp/svn/im-switch]]
   * SVN: "{{{ svn co http://kmuto.jp/svn/im-switch path/}}}" (password from muto-san)
 * [[http://alioth.debian.org/projects/pkg-ime/|IME package page]]
   * HTTP: [[http://svn.debian.org/wsvn/pkg-ime]]
   * SVN: "{{{svn://svn.debian.org/pkg-ime/ path/}}}" (ro)
   * SVN+SSH: {{{ svn+ssh://svn.debian.org/svn/pkg-ime/ path/}}}" (r/w)

Here are my checkout commands:

{{{
$ svn co svn+ssh://svn.debian.org/svn/ddp/ ddp
$ svn co svn+ssh://svn.debian.org/svn/ddp/manuals/trunk/quick-reference debian-reference/qref
$ cvs -d :ext:osamu@cvs.alioth.debian.org:/cvsroot/debiandoc-sgml checkout -d debiandoc-sgml-cvs .
$ git clone git://git.debian.org/git/debiandoc-sgml/debiandoc-sgml.git debiandoc-sgml-git/debiandoc-sgml
$ git clone git://git.debian.org/git/collab-maint/im-switch.git im-switch/im-switch
$ svn co svn+ssh://svn.debian.org/svn/pkg-ime pkg-ime
$ git clone ssh://git.debian.org/git/collab-maint/scim.git scim/scim
$ cvs -d :ext:cvs.alioth.debian.org:/cvsroot/webwml checkout -d webwml .
}}}

 * HTTP: [[http://www-master.debian.org/build-logs/ddp/]] - DDP build results
 * HTTP: [[http://svn.debian.org/wsvn/ddp/manuals/trunk/]]
 * HTTP: [[https://alioth.debian.org/scm/viewvc.php/?root=webwml]]
 * HTTP: [[http://git.debian.org/?p=debiandoc-sgml/debiandoc-sgml.git]]
 * HTTP: [[http://svn.debian.org/wsvn/pkg-ime]]
Line 81: Line 76:

Osamu Aoki's Wiki contents for users

I can be reached via e-mail: osamu_at_debian_dot_org

Important links for my packages and their maintenance

I have been working on several projects. Here are the links.

Here are my checkout commands:

$ svn co svn+ssh://svn.debian.org/svn/ddp/ ddp
$ svn co svn+ssh://svn.debian.org/svn/ddp/manuals/trunk/quick-reference debian-reference/qref
$ cvs -d :ext:osamu@cvs.alioth.debian.org:/cvsroot/debiandoc-sgml checkout -d debiandoc-sgml-cvs .
$ git clone git://git.debian.org/git/debiandoc-sgml/debiandoc-sgml.git debiandoc-sgml-git/debiandoc-sgml
$ git clone git://git.debian.org/git/collab-maint/im-switch.git im-switch/im-switch
$ svn co svn+ssh://svn.debian.org/svn/pkg-ime pkg-ime
$ git clone ssh://git.debian.org/git/collab-maint/scim.git scim/scim
$ cvs -d :ext:cvs.alioth.debian.org:/cvsroot/webwml checkout -d webwml .

Examples

Send data to Git archive

$ scp -p -r debiandoc-sgml.git   git.debian.org:/git/debiandoc-sgml/debiandoc-sgml.git
$ scp -p -r debian-reference.git git.debian.org:public_git/debian-reference.git
$ git push ssh://git.debian.org/git/debiandoc-sgml/debiandoc-sgml.git master:master
$ git push # if cloned with ssh://...

Get data from Git archive

* git archive for alioth group project

$ sensible-browser http://git.debian.org/?p=debiandoc-sgml/debiandoc-sgml.git # web
$ git clone  ssh://git.debian.org/git/debiandoc-sgml/debiandoc-sgml.git debiandoc-sgml # r/w
$ git clone  git://git.debian.org/git/debiandoc-sgml/debiandoc-sgml.git debiandoc-sgml # ro
$ git clone http://git.debian.org/git/debiandoc-sgml/debiandoc-sgml.git debiandoc-sgml # ro

* git archive for alioth user project

$ sensible-browser http://git.debian.org/?p=users/osamu/debian-reference.git # web
$ git clone  ssh://git.debian.org/~osamu/public_git/debian-reference.git debian-reference # r/w
$ git clone  ssh://git.debian.org/git/users/osamu/debian-reference.git   debian-reference # r/w
$ git clone  git://git.debian.org/~osamu/debian-reference.git            debian-reference # ro
$ git clone  git://git.debian.org/git/users/osamu/debian-reference.git   debian-reference # ro
$ git clone http://git.debian.org/git/users/osamu/debian-reference.git   debian-reference # ro

Translation and style guide line

English style

Japanese Style

Important links for my interest

I am interested in several projects, especially UTF-8 transition. Here are the links.

Key history

Discussion


Osamu Aoki