Re: CG 3.2.1: missing instructions on how to track the translation branch

2012-08-07 Thread Federico Bruni
Il 04/08/2012 02:27, John Mandereau ha scritto: Il giorno ven, 03/08/2012 alle 01.17 +0200, Federico Bruni ha scritto: git branch --track translation origin/translation git checkout translation FWIW git checkout origin/translation is a shorthand for the 2-commands sequence you gave.

Re: CG 3.2.1: missing instructions on how to track the translation branch

2012-08-07 Thread Graham Percival
On Tue, Aug 07, 2012 at 06:16:11PM +0200, Federico Bruni wrote: Il 04/08/2012 02:27, John Mandereau ha scritto: git checkout origin/translation is a shorthand for the 2-commands sequence you gave. I've just tried it after a fresh git clone and it doesn't seem to work:

Re: CG 3.2.1: missing instructions on how to track the translation branch

2012-08-07 Thread Federico Bruni
Il 07/08/2012 18:53, Graham Percival ha scritto: If you want to create a new branch to retain commits you create, you may do so (now or later) by using -b with the checkout command again. Example: git checkout -b new_branch_name maybe try following this advice? git checkout -b

Re: CG 3.2.1: missing instructions on how to track the translation branch

2012-08-07 Thread Colin Hall
On Tue, Aug 07, 2012 at 07:08:20PM +0200, Federico Bruni wrote: Il 07/08/2012 18:53, Graham Percival ha scritto: If you want to create a new branch to retain commits you create, you may do so (now or later) by using -b with the checkout command again. Example: git checkout -b

Re: CG 3.2.1: missing instructions on how to track the translation branch

2012-08-07 Thread Federico Bruni
Il 07/08/2012 22:43, Colin Hall ha scritto: On Tue, Aug 07, 2012 at 07:08:20PM +0200, Federico Bruni wrote: Il 07/08/2012 18:53, Graham Percival ha scritto: If you want to create a new branch to retain commits you create, you may do so (now or later) by using -b with the checkout command

Re: CG 3.2.1: missing instructions on how to track the translation branch

2012-08-07 Thread Colin Hall
On Tue, Aug 07, 2012 at 11:24:34PM +0200, Federico Bruni wrote: Il 07/08/2012 22:43, Colin Hall ha scritto: On Tue, Aug 07, 2012 at 07:08:20PM +0200, Federico Bruni wrote: Il 07/08/2012 18:53, Graham Percival ha scritto: If you want to create a new branch to retain commits you create, you may

Re: CG 3.2.1: missing instructions on how to track the translation branch

2012-08-07 Thread John Mandereau
Il giorno mar, 07/08/2012 alle 19.08 +0200, Federico Bruni ha scritto: oops I prefer this: git checkout -b translation origin/translation so the local branch will be named translation instead of origin/translation Federico, you're right to provide this choice of commands, mine (a single

Re: CG 3.2.1: missing instructions on how to track the translation branch

2012-08-03 Thread Graham Percival
On Fri, Aug 03, 2012 at 01:17:38AM +0200, Federico Bruni wrote: Previously the doc contained complex git commands but there were full instructions for both developers and translators. Now (new) translators are missing some information. I think that all translators should know is these two

Re: CG 3.2.1: missing instructions on how to track the translation branch

2012-08-03 Thread John Mandereau
Il giorno ven, 03/08/2012 alle 01.17 +0200, Federico Bruni ha scritto: git branch --track translation origin/translation git checkout translation FWIW git checkout origin/translation is a shorthand for the 2-commands sequence you gave. On a side note, 'git clone' sees _all_ the remote

CG 3.2.1: missing instructions on how to track the translation branch

2012-08-02 Thread Federico Bruni
Hi in CG 3.2.1, Initializing a repository the recommended way to download the source code is using clone: git clone git://git.sv.gnu.org/lilypond.git ~/lilypond-git git clone sets only the master branch. Previously the doc contained complex git commands but there were full instructions for