Charles O'Farrell

Results 132 comments of Charles O'Farrell

Hi @yogeshdimble . Firstly I should warn you that I probably can't do much to help you with this. I don't really maintain this library any more, and it's been...

Hi Zakusov, Can you try changing the following in checkin.py: cc_exec(['ci', '-identical', '-c', comment, file]) to cc_exec(['ci', '-identical', '-c', comment.encode(ENCODING), file]) Charles

Encode or decode? Looks like you've used decode there.

Hi Zakusov, > cc_exec(['ci', '-identical', '-c', comment.decode(ENCODING), file]) Still says decode in your error. Did you change it? I'm not sure if encode will actually work, but I'm afraid I...

Looks like it's failing on the debug method. You can try commenting that out for now. Again, not sure if that's actually going to help.

Also, how are you setting the ENCODING variable? It should use the system setting, but you can also try to manually setting it in common.py just to be sure.

Hi Zakusov, Try reproducing it in a simple test Python program and do something like: > ' '.join([commitMessage]) Where commitMessage is a string that contains Cyrillic. This is definitely git-cc...

Hi Dolanor, I'm afraid I can't probably help with this one (not that I'm help much anyway). I'm not sure that test is the same issue. Did you read the...

@arpit0017 I'm sorry, the error handling in git-cc is terrible. The problem here is that a real error is being squashed by a bad `finally` block: https://github.com/charleso/git-cc/blob/master/git_cc/rebase.py#L67 If you don't...

@hexcoder- sorry for the _very_ long delay. Did you get things working? Regarding Beyond Compare, that sounds annoying. If it were git, I know we can override the global mergetool...