Re: [Mono-dev] Migration to GitHub completed!

2010-07-28 Thread pablosantosl...@terra.es
Hi all,

So, now instead of a svn checkout, in order to build from sources,
should we type something like the following?

git clone git://github.com/mono/mono.git

Is that correct?

I guess not really since it's downloading the entire mono repo, which is
a terrible overkill, isn't it??

Thanks,

pablo


On 23/07/2010 8:38, Raja R Harinath wrote:
 Hi,
 
 pablosantosl...@terra.es pablosantosl...@terra.es writes:
 
 Congrats Gonzalo!!!

 Question: how long did the import take??
 
 The actual import run takes about 2-3 hours.  The whole process of
 debugging and fixing the import tool, fine-tuning the import, figuring
 out mappings between SVN committers and GitHub accounts, etc. took about
 a month.
 
 - Hari
 
 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list
 
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Migration to GitHub completed!

2010-07-28 Thread Alan
Hey,

On Wed, Jul 28, 2010 at 10:21 AM, pablosantosl...@terra.es 
pablosantosl...@terra.es wrote:

 Hi all,

 So, now instead of a svn checkout, in order to build from sources,
 should we type something like the following?

 git clone git://github.com/mono/mono.git

 Is that correct?


Yes, this is correct. The download size is a bit bigger than with svn but
not significantly so. Note that this single repo is the combination of the
old 'mono' and 'mcs' modules which were in SVN. You don't have to make two
separate checkouts anymore.

Alan



 I guess not really since it's downloading the entire mono repo, which is
 a terrible overkill, isn't it??

 Thanks,

 pablo


 On 23/07/2010 8:38, Raja R Harinath wrote:
  Hi,
 
  pablosantosl...@terra.es pablosantosl...@terra.es writes:
 
  Congrats Gonzalo!!!
 
  Question: how long did the import take??
 
  The actual import run takes about 2-3 hours.  The whole process of
  debugging and fixing the import tool, fine-tuning the import, figuring
  out mappings between SVN committers and GitHub accounts, etc. took about
  a month.
 
  - Hari
 
  ___
  Mono-devel-list mailing list
  Mono-devel-list@lists.ximian.com
  http://lists.ximian.com/mailman/listinfo/mono-devel-list
 
 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Migration to GitHub completed!

2010-07-28 Thread pablosantosl...@terra.es
Hi Alan,

But, now I'm downloading the entire history of mono instead of a single
copy of 'master', right?

pablo

On 28/07/2010 11:24, Alan wrote:
 Hey,
 
 On Wed, Jul 28, 2010 at 10:21 AM, pablosantosl...@terra.es
 mailto:pablosantosl...@terra.es pablosantosl...@terra.es
 mailto:pablosantosl...@terra.es wrote:
 
 Hi all,
 
 So, now instead of a svn checkout, in order to build from sources,
 should we type something like the following?
 
 git clone git://github.com/mono/mono.git
 http://github.com/mono/mono.git
 
 Is that correct?
 
 
 Yes, this is correct. The download size is a bit bigger than with svn
 but not significantly so. Note that this single repo is the combination
 of the old 'mono' and 'mcs' modules which were in SVN. You don't have to
 make two separate checkouts anymore.
 
 Alan
 
  
 
 I guess not really since it's downloading the entire mono repo, which is
 a terrible overkill, isn't it??
 
 Thanks,
 
 pablo
 
 
 On 23/07/2010 8:38, Raja R Harinath wrote:
  Hi,
 
  pablosantosl...@terra.es mailto:pablosantosl...@terra.es
 pablosantosl...@terra.es mailto:pablosantosl...@terra.es writes:
 
  Congrats Gonzalo!!!
 
  Question: how long did the import take??
 
  The actual import run takes about 2-3 hours.  The whole process of
  debugging and fixing the import tool, fine-tuning the import, figuring
  out mappings between SVN committers and GitHub accounts, etc. took
 about
  a month.
 
  - Hari
 
  ___
  Mono-devel-list mailing list
  Mono-devel-list@lists.ximian.com
 mailto:Mono-devel-list@lists.ximian.com
  http://lists.ximian.com/mailman/listinfo/mono-devel-list
 
 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 mailto:Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list
 
 
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Migration to GitHub completed!

2010-07-28 Thread Jérémie Laval
Yes you are but if you aren't interested in contributing with this
repository (no pushing or pulling from) you can pass the --depth 1 switch to
git clone which will only fetch one revision (that is HEAD). You will still
be able to pull from github but that's pretty much it.

--
Jérémie Laval
jeremie.la...@gmail.com
http://neteril.org


On Wed, Jul 28, 2010 at 11:26 AM, pablosantosl...@terra.es 
pablosantosl...@terra.es wrote:

 Hi Alan,

 But, now I'm downloading the entire history of mono instead of a single
 copy of 'master', right?

 pablo

 On 28/07/2010 11:24, Alan wrote:
  Hey,
 
  On Wed, Jul 28, 2010 at 10:21 AM, pablosantosl...@terra.es
  mailto:pablosantosl...@terra.es pablosantosl...@terra.es
  mailto:pablosantosl...@terra.es wrote:
 
  Hi all,
 
  So, now instead of a svn checkout, in order to build from sources,
  should we type something like the following?
 
  git clone git://github.com/mono/mono.git
  http://github.com/mono/mono.git
 
  Is that correct?
 
 
  Yes, this is correct. The download size is a bit bigger than with svn
  but not significantly so. Note that this single repo is the combination
  of the old 'mono' and 'mcs' modules which were in SVN. You don't have to
  make two separate checkouts anymore.
 
  Alan
 
 
 
  I guess not really since it's downloading the entire mono repo, which
 is
  a terrible overkill, isn't it??
 
  Thanks,
 
  pablo
 
 
  On 23/07/2010 8:38, Raja R Harinath wrote:
   Hi,
  
   pablosantosl...@terra.es mailto:pablosantosl...@terra.es
  pablosantosl...@terra.es mailto:pablosantosl...@terra.es writes:
  
   Congrats Gonzalo!!!
  
   Question: how long did the import take??
  
   The actual import run takes about 2-3 hours.  The whole process of
   debugging and fixing the import tool, fine-tuning the import,
 figuring
   out mappings between SVN committers and GitHub accounts, etc. took
  about
   a month.
  
   - Hari
  
   ___
   Mono-devel-list mailing list
   Mono-devel-list@lists.ximian.com
  mailto:Mono-devel-list@lists.ximian.com
   http://lists.ximian.com/mailman/listinfo/mono-devel-list
  
  ___
  Mono-devel-list mailing list
  Mono-devel-list@lists.ximian.com
  mailto:Mono-devel-list@lists.ximian.com
  http://lists.ximian.com/mailman/listinfo/mono-devel-list
 
 
 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Migration to GitHub completed!

2010-07-28 Thread pablosantosl...@terra.es
Excellent!

On 28/07/2010 11:32, Jérémie Laval wrote:
 Yes you are but if you aren't interested in contributing with this
 repository (no pushing or pulling from) you can pass the --depth
 1 switch to git clone which will only fetch one revision (that is HEAD).
 You will still be able to pull from github but that's pretty much it.
 
 --
 Jérémie Laval
 jeremie.la...@gmail.com mailto:jeremie.la...@gmail.com
 http://neteril.org
 
 
 On Wed, Jul 28, 2010 at 11:26 AM, pablosantosl...@terra.es
 mailto:pablosantosl...@terra.es pablosantosl...@terra.es
 mailto:pablosantosl...@terra.es wrote:
 
 Hi Alan,
 
 But, now I'm downloading the entire history of mono instead of a single
 copy of 'master', right?
 
 pablo
 
 On 28/07/2010 11:24, Alan wrote:
  Hey,
 
  On Wed, Jul 28, 2010 at 10:21 AM, pablosantosl...@terra.es
 mailto:pablosantosl...@terra.es
  mailto:pablosantosl...@terra.es
 mailto:pablosantosl...@terra.es pablosantosl...@terra.es
 mailto:pablosantosl...@terra.es
  mailto:pablosantosl...@terra.es
 mailto:pablosantosl...@terra.es wrote:
 
  Hi all,
 
  So, now instead of a svn checkout, in order to build from sources,
  should we type something like the following?
 
  git clone git://github.com/mono/mono.git
 http://github.com/mono/mono.git
  http://github.com/mono/mono.git
 
  Is that correct?
 
 
  Yes, this is correct. The download size is a bit bigger than with svn
  but not significantly so. Note that this single repo is the
 combination
  of the old 'mono' and 'mcs' modules which were in SVN. You don't
 have to
  make two separate checkouts anymore.
 
  Alan
 
 
 
  I guess not really since it's downloading the entire mono
 repo, which is
  a terrible overkill, isn't it??
 
  Thanks,
 
  pablo
 
 
  On 23/07/2010 8:38, Raja R Harinath wrote:
   Hi,
  
   pablosantosl...@terra.es mailto:pablosantosl...@terra.es
 mailto:pablosantosl...@terra.es mailto:pablosantosl...@terra.es
  pablosantosl...@terra.es mailto:pablosantosl...@terra.es
 mailto:pablosantosl...@terra.es mailto:pablosantosl...@terra.es
 writes:
  
   Congrats Gonzalo!!!
  
   Question: how long did the import take??
  
   The actual import run takes about 2-3 hours.  The whole
 process of
   debugging and fixing the import tool, fine-tuning the
 import, figuring
   out mappings between SVN committers and GitHub accounts,
 etc. took
  about
   a month.
  
   - Hari
  
   ___
   Mono-devel-list mailing list
   Mono-devel-list@lists.ximian.com
 mailto:Mono-devel-list@lists.ximian.com
  mailto:Mono-devel-list@lists.ximian.com
 mailto:Mono-devel-list@lists.ximian.com
   http://lists.ximian.com/mailman/listinfo/mono-devel-list
  
  ___
  Mono-devel-list mailing list
  Mono-devel-list@lists.ximian.com
 mailto:Mono-devel-list@lists.ximian.com
  mailto:Mono-devel-list@lists.ximian.com
 mailto:Mono-devel-list@lists.ximian.com
  http://lists.ximian.com/mailman/listinfo/mono-devel-list
 
 
 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 mailto:Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list
 
 

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Migration to GitHub completed!

2010-07-28 Thread Bojan Rajkovic
2010/7/28 pablosantosl...@terra.es pablosantosl...@terra.es

 Excellent!

 On 28/07/2010 11:32, Jérémie Laval wrote:
  Yes you are but if you aren't interested in contributing with this
  repository (no pushing or pulling from) you can pass the --depth
  1 switch to git clone which will only fetch one revision (that is HEAD).
  You will still be able to pull from github but that's pretty much it.
 
  --
  Jérémie Laval
  jeremie.la...@gmail.com mailto:jeremie.la...@gmail.com
  http://neteril.org
 
 
  On Wed, Jul 28, 2010 at 11:26 AM, pablosantosl...@terra.es
  mailto:pablosantosl...@terra.es pablosantosl...@terra.es
  mailto:pablosantosl...@terra.es wrote:
 
  Hi Alan,
 
  But, now I'm downloading the entire history of mono instead of a
 single
  copy of 'master', right?
 
  pablo


For what it's worth, a git clone of the full depth took less time on my
machine than an svn co of anonsvn trunk--almost 10 seconds less. Git is very
good at compressing history.

--Bojan
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Migration to GitHub completed!

2010-07-23 Thread Raja R Harinath
Hi,

pablosantosl...@terra.es pablosantosl...@terra.es writes:

 Congrats Gonzalo!!!

 Question: how long did the import take??

The actual import run takes about 2-3 hours.  The whole process of
debugging and fixing the import tool, fine-tuning the import, figuring
out mappings between SVN committers and GitHub accounts, etc. took about
a month.

- Hari

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Migration to GitHub completed!

2010-07-22 Thread Gonzalo Paniagua Javier
Hello,

Our migration to GitHub is now completed.

See http://mono-project.com/GitFAQ for more details.

svn+ssh://mono-cvs.ximian.com/source will be kept alive in read-only
mode.

Happy hacking!

-Gonzalo


___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list