Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-11 Thread Andreas Schwab
Kalle Olavi Niemitalo k...@iki.fi writes: and neither process blocked any signals (not even SIGCHLD as system(3) would). If you don't have a SIGCHLD handler it won't matter anyway. Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-10 Thread Paul Fox
kalle olavi niemitalo wrote: Jeff King p...@peff.net writes: Comments welcome from people using unusual editors (e.g., a script that starts an editor in another window then blocks, waiting for the user to finish). I often run a shell in Emacs in X, then start git commit in

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-10 Thread Junio C Hamano
Jeff King p...@peff.net writes: On Fri, Nov 09, 2012 at 12:27:35PM -0800, Junio C Hamano wrote: What we should have arranged was to have https://github.com/git/git (which is not even owned by me, but I asked somebody at GitHub to assign me a write privilege) writable by the interim

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-10 Thread Junio C Hamano
SZEDER Gábor sze...@ira.uka.de writes: I think it is better to keep the tests simple and maintainable. Maintainable? There is nothing to maintain here ... OTOH, this series has some serious drawbacks. It makes debugging more difficult Are these referring to the same aspect of the

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-10 Thread Andreas Schwab
Kalle Olavi Niemitalo k...@iki.fi writes: With strace, it looks like CVS sets SIG_IGN as the handler of SIGINT and SIGQUIT only in the parent process after forking, not in the child process that executes the editor. CVS also temporarily blocks signals by calling sigprocmask, but it undoes

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-10 Thread Paul Fox
kalle olavi niemitalo wrote: Paul Fox p...@foxharp.boston.ma.us writes: when i implemented the change, i wondered if some twisted emacs workflow would be an issue. ;-) and i almost blocked SIGQUIT as well -- the two programs i looked at for precedent (CVS and MH) both block both

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-10 Thread Kalle Olavi Niemitalo
Paul Fox p...@foxharp.boston.ma.us writes: you're sending SIGINT to the cvs commit command, and that causes the editor to die right away? That's right. It is not a quirk of shell-mode in Emacs, because I get the same result with ^C in xterm too. %

What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-09 Thread Jeff King
What's cooking in git.git (Nov 2012, #02; Fri, 9) -- Here are the topics that have been cooking. Commits prefixed with '-' are only in 'pu' (proposed updates) while commits prefixed with '+' are in 'next'. The fourth batch of topics has graduated

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-09 Thread Ralf Thielow
On Fri, Nov 9, 2012 at 8:23 PM, Jeff King p...@peff.net wrote: You can find the changes described here in the integration branches of my repository at: git://github.com/peff/git.git It seems that the repo doesn't contain the integration branches?!? $ git remote add peff

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-09 Thread Jeff King
On Fri, Nov 09, 2012 at 09:06:47PM +0100, Ralf Thielow wrote: It seems that the repo doesn't contain the integration branches?!? $ git remote add peff git://github.com/peff/git.git $ git fetch -v peff From git://github.com/peff/git * [new branch] maint - peff/maint *

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-09 Thread Junio C Hamano
Jeff King p...@peff.net writes: I have not been pushing the individual topic branches to make life easier for people who usually just track Junio's kernel.org repository, and would not welcome suddenly getting a hundred extra remote branches. I can make them public if it makes life easier for

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-09 Thread Kalle Olavi Niemitalo
Jeff King p...@peff.net writes: Comments welcome from people using unusual editors (e.g., a script that starts an editor in another window then blocks, waiting for the user to finish). I often run a shell in Emacs in X, then start git commit in that shell. $EDITOR is emacsclient

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-09 Thread Felipe Contreras
Hi, On Fri, Nov 9, 2012 at 8:23 PM, Jeff King p...@peff.net wrote: * fc/fast-export-fixes (2012-11-08) 14 commits - fast-export: don't handle uninteresting refs - fast-export: make sure updated refs get updated - fast-export: fix comparison in tests - fast-export: trivial cleanup -

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-09 Thread Jeff King
On Sat, Nov 10, 2012 at 12:21:48AM +0100, Felipe Contreras wrote: * fc/fast-export-fixes (2012-11-08) 14 commits - fast-export: don't handle uninteresting refs - fast-export: make sure updated refs get updated - fast-export: fix comparison in tests - fast-export: trivial cleanup

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-09 Thread Jeff King
On Fri, Nov 09, 2012 at 12:27:35PM -0800, Junio C Hamano wrote: Jeff King p...@peff.net writes: I have not been pushing the individual topic branches to make life easier for people who usually just track Junio's kernel.org repository, and would not welcome suddenly getting a hundred

Re: What's cooking in git.git (Nov 2012, #02; Fri, 9)

2012-11-09 Thread Felipe Contreras
On Sat, Nov 10, 2012 at 1:33 AM, Jeff King p...@peff.net wrote: On Sat, Nov 10, 2012 at 12:21:48AM +0100, Felipe Contreras wrote: * fc/fast-export-fixes (2012-11-08) 14 commits - fast-export: don't handle uninteresting refs - fast-export: make sure updated refs get updated -