Sam Vilain wrote:
> I just gave the cg- commands initially because I didn't want to write
> this git-core equivalent in public:
> mkdir perl
> cd perl
> git-init
> git-remote add catalyst git://git.catalyst.net.nz/perl.git
> git-config remote.catalyst.fetch \
> '+refs/heads/restorical:refs/remotes/restorical'
> git-fetch catalyst
> git-checkout -b master restorical
>
>
Shawn Pearce has pointed out this much more straightforward sequence:
mkdir perl
cd perl
git init
git remote add -t restorical -f catalyst \
git://git.catalyst.net.nz/perl.git
git checkout -b master catalyst/restorical
Sam.