Bug#313596: cogito: cannot add dangling symlinks whereas git can

2006-02-06 Thread Petr Baudis
Dear diary, on Mon, Jan 02, 2006 at 01:15:17PM CET, I got a letter where Gerrit Pape <[EMAIL PROTECTED]> said that... > forwarded 313596 upstream > quit > > Hi, cg-add refuses to add special files such as dangling symlinks while > git can handle them just fine. Please see http://bugs.debian.org/3

Bug#313596: cogito: cannot add dangling symlinks whereas git can

2006-01-02 Thread Gerrit Pape
forwarded 313596 upstream quit Hi, cg-add refuses to add special files such as dangling symlinks while git can handle them just fine. Please see http://bugs.debian.org/313596 I'm not sure why cg-add checks files to commit with test -f. Regards, Gerrit. --- diff --git a/cg-add b/cg-add index 33

Bug#313596: cogito cannot add dangling symlinks whereas git can

2005-12-07 Thread Vincent Danjean
Gerrit Pape wrote: On Tue, Jun 14, 2005 at 03:44:32PM +0200, Vincent Danjean wrote: cg-add test for the presence of the file to add with : find "$@" -type f -print0 ... This does not work is the file is a dangling symlink. Please, change this line with : find "$@" -type f -o -type l -print0 ...

Bug#313596: cogito cannot add dangling symlinks whereas git can

2005-12-06 Thread Gerrit Pape
On Tue, Jun 14, 2005 at 03:44:32PM +0200, Vincent Danjean wrote: > Package: cogito > Version: 0.11.3+20050610-1 > Severity: normal > Tags: patch > > cg-add test for the presence of the file to add with : > find "$@" -type f -print0 ... > This does not work is the file is a dangling symlink. Please

Bug#313596: cogito cannot add dangling symlinks whereas git can

2005-06-14 Thread Vincent Danjean
On Tue, Jun 14, 2005 at 03:44:32PM +0200, Vincent Danjean wrote: > cg-add test for the presence of the file to add with : > find "$@" -type f -print0 ... > This does not work is the file is a dangling symlink. Please, change > this line with : > find "$@" -type f -o -type l -print0 ... > or somethi

Bug#313596: cogito cannot add dangling symlinks whereas git can

2005-06-14 Thread Vincent Danjean
Package: cogito Version: 0.11.3+20050610-1 Severity: normal Tags: patch cg-add test for the presence of the file to add with : find "$@" -type f -print0 ... This does not work is the file is a dangling symlink. Please, change this line with : find "$@" -type f -o -type l -print0 ... or something s