Textconv

2013-03-11 Thread Dmitry Ilin
Hello! Most of GUI for Git using 'git show' command to show differences between versions. For example: WebStorm IDE. But for now there is no way to specify text conversion command in git config for 'show' as it done for 'diff'. It makes problems when we dealing with encrypted repositories.

Re: Textconv

2013-03-11 Thread Dmitry Ilin
' [diff openssl] textconv = openssl enc -d -base64 -aes-256-ecb -k 'abcde' -in $1 2 /dev/null || cat $1 [merge] renormalize = true And content of '.git/info/attributes': * filter=openssl diff=openssl How can I deal with it? On 03/11/2013 02:00 PM, Matthieu Moy wrote: Dmitry Ilin dmi

Re: Textconv

2013-03-11 Thread Dmitry Ilin
/2013 02:41 PM, Matthieu Moy wrote: Dmitry Ilin dmi...@mylovecompany.com writes: I mean that our filter doesn't work with 'git show' and I need to enable it for this command. This is part of my git config file: [filter openssl] smudge = openssl enc -d -base64 -aes-256-ecb -k 'abcde' 2 /dev