Why can't I commit my code to GitHub?
I have a coding project that I would like to maintain at GitHub.
I went to http://github.com and created an account.
I downloaded and installed Git on Windows 7 choosing the option to use it via the command line.
Through some googled tutorials I created an SSH key.
I'm following the following instructions:
But when I get to "git commit..." I get the following error.
What's my next step? Who has been down this path and can help me out? Who knows of a git tutorial for windows 7 that will work so I can get going? All I w开发者_运维技巧ant to do is get my code up, learn how to update it, and keep learning from there.
It's Windows, use double quotes for your description:
git commit -m "first commit"
Try using " instead of '
Try git commit -m "first commit"
... note the double quotes
精彩评论