Re: Git vs SVN (was: Can we improve things?)



<quote who="Sanford Armstrong">

> $ bzr init-repo --trees some-project
> $ cd some-project
> $ bzr checkout http://url/to/some-project
> $ bzr branch mainline working
> $ cd working
> $ ./configure
> $ make
> 
> ...compared to the same steps using svn...
> 
> $ svn co http://url/to/some-project/trunk some-project
> $ cd some-project
> $ ./configure
> $ make

You appear to be comparing completely different things. If you want to do a
checkout with bzr:

$ bzr co http://url/to/some-project/trunk some-project
$ cd some-project
$ ./configure
$ make

If you want to have a branch with bzr:

$ bzr branch http://url/to/some-project/trunk some-project
$ cd some-project
$ ./configure
$ make

Same.

- Jeff

-- 
GNOME.conf.au 2008: Melbourne, Australia http://live.gnome.org/Melbourne2008
 
            o/~ we all live in a yellow subroutine o/~ - auspex



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]