Github发布jquery插件

Hello.

I programmed a plug-in for Jquery but I found out if I want to publish it in jquery.com I have to get git-hub anyway I followed all this steps here. http://plugins.jquery.com/docs/publish/

when I was in the step (Publishing a Version) I didn't know what is mean, I tried to upload my plug-in to git hub I didn't know how to do it so please can you help me to finish the last step and publish my plug-in also I didn't know where I put this tags

$ git tag 0.1.0
$ git push origin --tags

The command $ git push origin --tags is not correct. Use the below command:

$ git push --tags origin

Refences: How do you push a Git tag to a branch using a refspec?

http://git-scm.com/book/ch2-6.html