Hi,
I know git's made for any kind of _big_ project out there but what about
having git_linux cmd or something to do all the stuff (create path, cloning,
download, readtree, checkout, make oldconf, make, export stuff ... ) ? I do
feel somekind of a regression in front of install_latest_kernel ease of
use.Did I miss something ?
cc pls :)
Regards,
FabF
--
GMX DSL = Maximale Leistung zum minimalen Preis!
2000 MB nur 2,99, Flatrate ab 4,99 Euro/Monat: http://www.gmx.net/de/go/dsl
On Thu, Sep 08, 2005 at 10:26:49PM +0200, "Fabian LoneStar Fr?d?rick" wrote:
> Hi,
>
> I know git's made for any kind of _big_ project out there but what about
> having git_linux cmd or something to do all the stuff (create path, cloning,
> download, readtree, checkout, make oldconf, make, export stuff ... ) ? I do
> feel somekind of a regression in front of install_latest_kernel ease of
> use.Did I miss something ?
cogito?
cg-clone \
rsync://rsync.kernel.org/pub/scm/linux/kernel/git/linus/linux-2.6.git \
linux-2.6.git
cd linux-2.6
make menuconfig
See http://www.kernel.org/git for cogito pointers.
Sam
On Thu, September 8, 2005 4:37 pm, Sam Ravnborg said:
> cogito?
>
> cg-clone \
> rsync://rsync.kernel.org/pub/scm/linux/kernel/git/linus/linux-2.6.git \
> linux-2.6.git
>
> cd linux-2.6
> make menuconfig
>
The cogito shell scripts don't buy you as much as they once did. For
example, the above procedure in raw git, is:
git clone
rsync://http://www.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
linux-2.6
cd linux-2.6
make menuconfig
Cheers,
Sean