Skip to content

Instantly share code, notes, and snippets.

@pjstadig
Created November 5, 2010 13:09
Show Gist options
  • Save pjstadig/664113 to your computer and use it in GitHub Desktop.
Save pjstadig/664113 to your computer and use it in GitHub Desktop.
(defun github-set-config (key value)
"Sets a GitHub specific value to the global Git config."
(let ((git (executable-find "git")))
(shell-command-to-string
(format git " config --global github.%s %s" key value))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment