views:

40

answers:

3

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:

alt text

But when I get to "git commit..." I get the following error.

alt text

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 want to do is get my code up, learn how to update it, and keep learning from there.

A: 

Try using " instead of '

ykatchou
+3  A: 

It's Windows, use double quotes for your description:

git commit -m "first commit"
kanaka
A: 

Try git commit -m "first commit" ... note the doulbe quotes

dgnorton