Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
zsh has migrated cvs -> zsh
- X-seq: zsh-workers 31194
- From: Phil Pennock <zsh-workers+phil.pennock@xxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: zsh has migrated cvs -> zsh
- Date: Wed, 3 Apr 2013 18:50:41 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=spodhuis.org; s=d201210; h=Content-Type:MIME-Version:Message-ID:Subject:To:From:Date; bh=9IjDOXRSDFOz4/lB1Hr+9nzffCd7UE1cSIWKBqc5SXc=; b=qk6mipC6MkawVKC2pkJ9nenfvLqPQS1D5bbG80mcuHffZjnPyHDDRSx+DfdJ2d8m/W9FgZrHsSOG5bXw9h9JfOzn/JYI3lqAQV55a3gWIV00LTBkAM1cWAztDj7zE6zCGHagBlAhkXWZuZTwggEeQYz4SBCNXPk3psI2+jl94lk=;
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mail-followup-to: zsh-workers@xxxxxxx
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
The rest of the details are in an old thread, possibly skipped by folks,
so I'm going to try to gather the details here into one, hopefully
clear, email.
1. The trigger was pulled. zsh now uses git.
2. CVS is dead. "cvs up" will fail. "/cvsroot/zsh/zsh" is not on the
server.
3. On the CVS server, the old zsh content is now in a directory
"zsh-OLD-DIR-USE-GIT" which is not inside the normal module, thus the
death above. So you can still get to the content.
4. git clone git://git.code.sf.net/p/zsh/code
git remote set-url --push origin ssh://${SFUSER}@git.code.sf.net/p/zsh/code
That's the core of it.
If you have set up ~/.ssh/config to set "User" automatically, then you
can just use simpler URLs that can be shared and used by others.
Alternatively, you can remap the URLs in your ~/.gitconfig; I've
included examples of both of these, for user "fredbloggs1", below.
I use the ~/.ssh/config approach, myself.
Code: ssh://git.code.sf.net/p/zsh/code
Website: ssh://git.code.sf.net/p/zsh/web
Kudos to Wayne, Frank and Aaron for doing the work of switching,
handling patchlevel, and so on.
Dear ${deity} it's so nice to have a fast SCM "log" command.
Regards,
-Phil
Example ~/.ssh/config setting:
----------------------------8< cut here >8------------------------------
Host *.sf.net *.sourceforge.net
User fredbloggs1
ForwardAgent no
ForwardX11 no
GSSAPIAuthentication no
----------------------------8< cut here >8------------------------------
Example ~/.gitconfig setting:
----------------------------8< cut here >8------------------------------
[url "ssh://fredbloggs1@xxxxxxxxxxxxxxx"]
insteadOf = git://git.code.sf.net
insteadOf = ssh://git.code.sf.net
----------------------------8< cut here >8------------------------------
Messages sorted by:
Reverse Date,
Date,
Thread,
Author