轉自:http://blog.sina.com.cn/s/blog_4b55f6860100zzhd.htmlhtml
若是你對這種懷舊的方式很感冒,不妨參考這裏:git
http://help.github.com/create-a-repo/github
這裏只是稍微簡單介紹一下:服務器
1.建立一個新的repo編輯器
在網頁中點擊New Repositoryurl
填寫下面的信息,而後點擊」Create Repository」命令行
2.建立一個README3d
通常狀況下都建議建立一個READMEhtm
在Terminal中輸入美圓符號後面的命令blog
$ mkdir ~/Hello-World
做用:Creates a directory for your project called "Hello-World" in your user directory
$ cd ~/Hello-World
做用:Changes the current working directory to your newly created directory
$ git init
做用:Sets up the necessary Git files
Initialized empty Git repository in /Users/your_user_directory/Hello-World/.git/
$ touch README
而後使用文本編輯器打開repo裏面的Hello-World文件夾的README文件。而後隨便輸入幾句話,編輯完成後保存並關閉。
3.commit這個README
正如第1部分的工做原理所講,commit實際上是建立某個特定時點的項目內全部文件的快照。
使用下面的命令:
$ git add README
做用:Stages your README file, adding it to the list of files to be committed
$ git commit -m 'first commit'
一直到這一步,咱們都仍是在本地操做。
4.遠程建立一個repo(在GitHub服務器中),並push剛纔的commit
$ git remote add origin git@github.com:username/Hello-World.git
做用:Sets the origin for the Hello-World repo
$ git push -u origin master
如今你的repository已經在GitHub中建立成功了。