Skip to content

Instantly share code, notes, and snippets.

@osamu2001
Created July 27, 2010 02:17
Show Gist options
  • Save osamu2001/491610 to your computer and use it in GitHub Desktop.
Save osamu2001/491610 to your computer and use it in GitHub Desktop.
(defadvice vc-git-command
(around vc-git-command-for-win activate)
(let ((coding-system-for-write file-name-coding-system))
ad-do-it
))
(defadvice vc-git--call
(around vc-git--call-for-win activate)
(let ((coding-system-for-write file-name-coding-system))
ad-do-it
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment