eschulte / emacs-starter-kit

DEPRECATED: replaced by eschulte/emacs24-starter-kit. A "literate" Org-mode based Emacs configuration.
http://eschulte.github.com/emacs-starter-kit/
GNU General Public License v3.0
109 stars 33 forks source link

(mouse-wheel-mode t) causes trouble when booted into terminal #7

Closed jrhorn424 closed 13 years ago

jrhorn424 commented 13 years ago

Eric,

I've fixed the issue, but I'm new to git and when I try to push the change I made, I receive a "return code 22" error after logging in. Any ideas?

Jeff

eschulte commented 13 years ago

Hi Jeff,

If you try to push to my repository then you will get the error above, because you don't have push permission. To share a local change you can either fork my repository and then send a pull request (the github way) or you can run the following command in your repository

git format-patch -o ~/Desktop/ HEAD~1

which will drop the last commit into a nicely formatted patch in your ~/Desktop directory. You can then email that file to me as an attachment (this is the general git way to share such one-off changes).

Thanks -- Eric

jrhorn424 commented 13 years ago

Thanks, Eric. I think I'll send along a patch!