Re: [git-users] Re: What does git clone copy?

2012-01-22 Thread Konstantin Khomoutov
On Sat, 21 Jan 2012 14:43:13 -0800 (PST) dspfun dsp...@hotmail.com wrote: [...] The fact you have a local branch master after cloning a remote repo is because, in essence, `git clone` works like this: 1) Initializes an empty local repository. 2) Fetches into it all the branches the remote

Re: [git-users] Re: What does git clone copy?

2012-01-20 Thread Konstantin Khomoutov
On Fri, 20 Jan 2012 07:01:27 -0800 (PST) dspfun dsp...@hotmail.com wrote: A confusing thing is the difference between: git log master and git log origin/master git log master shows the log of the remote repositorys master branch. git log origin/master shows the log of a _local_