Re: getting mc GIT HEAD version + debian.

2010-05-21 Thread Janek Kozicki
too much talking. It works: mkdir git-HEAD cd git-HEAD git clone git://midnight-commander.org/git/mc.git cd mc svn co svn://svn.debian.org/svn/pkg-mc/trunk/debian ./autogen.sh fakeroot debian/rules binary now I have git-HEAD here. I'm reading a quick git tutorial. I hope that soon

getting real

2010-05-21 Thread Janek Kozicki
Tell me if my idea of how to work here is correct: - create a trac ticket for each thing that I plan to do with tree view (I have several separate ideas). - create a branch for those tickets. - once some ticket is done: push it - then you can pull and test it. correct? My separate ideas.

Re: getting real with tree view

2010-05-21 Thread Janek Kozicki
Janek Kozicki said: (by the date of Fri, 21 May 2010 21:11:12 +0200) Tell me if my idea of how to work here is correct: - create a trac ticket for each thing that I plan to do with tree view (I have several separate ideas). - create a branch for those tickets. - once some ticket is

technical question about branches

2010-05-21 Thread Janek Kozicki
ok, so I have cloned mc repository: git clone git://midnight-commander.org/git/mc.git now I want to work on ticket #1517 git checkout -b 1517_collapse_a_treeview_dir_with_enter I changed some file: git commit -a -m 'I am testing how git commit push works' Now I want to make it

Re: getting real

2010-05-21 Thread Andrew Borodin
On Fri, 21 May 2010 21:11:12 +0200 Janek Kozicki wrote: Ideally each of them should be a separate (smaller) patch, but they will have to be applied in order (they depend on each other). In such case I prefer create one branch with several commits. -- Andrew