lkml.org 
[lkml]   [2005]   [May]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectExperimental git repositories available for SATA

I have finally gotten around to getting 2.6.x libata development moved
over from BitKeeper to git.


The "for Linus/Andrew" repository is libata-2.6.git, available at
rsync://rsync.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-2.6.git/

The new libata-dev repository is libata-dev.git, available at
rsync://rsync.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git/


A word about these repositories. I don't use any SCM besides git
itself. libata-2.6.git appears as you would expect: .git/HEAD points
to refs/heads/master, which is the top-of-tree, and contains patches
destined for upstream ASAP.

libata-dev.git is a bit different, as it contains multiple branches:
> [jgarzik@pretzel libata-dev]$ ls .git/refs/heads/
> adma atapi-enable iomap pdc2027x
> adma-mwi bridge-detect iomap-step1 pdc20619
> ahci-atapi chs-support master promise-sata-pata
> ahci-msi ioctl-get-identity passthru sil24

I use the attached 'git-switch-tree' script to update the working
directory to reflect the desired branch.

As soon as I am comfortable with git merging, I will create an 'ALL'
branch, which contains all of these trees, merged together properly.

Jeff



#!/bin/sh

if [ "x$1" != "x" ]
then
if [ ! -f .git/refs/heads/$1 ]
then
echo Branch $1 not found.
exit 1
fi

( cd .git && rm -f HEAD && ln -s refs/heads/$1 HEAD )
fi

git-read-tree $(cat .git/HEAD) && git-checkout-cache -q -f -a
\
 
 \ /
  Last update: 2005-05-12 23:00    [W:0.051 / U:0.080 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site