diff options
| -rw-r--r-- | _posts/2009-06-14-mac-git-installation.textile | 2 | ||||
| -rw-r--r-- | _posts/2009-06-16-troubleshooting-common-issues.markdown | 39 |
2 files changed, 40 insertions, 1 deletions
diff --git a/_posts/2009-06-14-mac-git-installation.textile b/_posts/2009-06-14-mac-git-installation.textile index b24281d..79af958 100644 --- a/_posts/2009-06-14-mac-git-installation.textile +++ b/_posts/2009-06-14-mac-git-installation.textile @@ -60,4 +60,4 @@ $ sudo port install git-core +svn h2. Compiling git manually -See "compiling and installing git on mac os x":http://github.com/guides/compiling-and-installing-git-on-mac-os-x. +See "this guide":http://gist.github.com/423308. diff --git a/_posts/2009-06-16-troubleshooting-common-issues.markdown b/_posts/2009-06-16-troubleshooting-common-issues.markdown new file mode 100644 index 0000000..dce7741 --- /dev/null +++ b/_posts/2009-06-16-troubleshooting-common-issues.markdown @@ -0,0 +1,39 @@ +--- +layout: default +title: Common issues and questions +description: Solutions to the most common issues and answers to common questions +categories: troubleshooting popular +main_category: troubleshooting +--- + +I can't push, "Permission denied (publickey)" +--------------------------------------------- + +Make sure you've [set up an SSH key](/key-setup-redirect) and are using the correct URL (they are case-sensitive). Check [this guide](/troubleshooting-ssh) for more information. + +My commits aren't linked to my user, to the wrong user, or don't have a gravatar +----------------------------------------------------------------------------------- + +Make sure your [git](/git-email-settings) and [GitHub](https://github.com/account#email_bucket) email settings match. + +You may also need to check your Gravatar account to make sure your Gravatar has a "G" rating. + +I changed my gravatar but it's not updating +------------------------------------------- + +Browsers cache gravatar images for a very long time, clear your cache. + +Syntax highlighting isn't working for my language +------------------------------------------------- + +We use the excellent [pygments](http://pygments.org/) library for our syntax highlighting. Check their list of [supported languages](http://pygments.org/languages/) and learn how to specify a lexer for yours. If you contribute a lexer back to pygments, let us know and we’ll make sure it’s made available here on GitHub. + +Can I use Eclipse/EGit with GitHub? +----------------------------------- + +Yes, see [this writup](http://gist.github.com/423316) for help. + +Are there any screencasts or other resources out there for git? +--------------------------------------------------------------- + +Yes, you can find a *(probably incomplete)* list [here](http://gist.github.com/423320). |
