Git 的起源
在服务器端
# git init --bare project.git
在本地文件夹中
$ git clone git://server/project.git
$ cd project
添加文件…
$ git add .
$ git commit -m "First commit."
$ git push
在服务器端
# git init --bare project.git
在本地文件夹中
$ git clone git://server/project.git
$ cd project
添加文件…
$ git add .
$ git commit -m "First commit."
$ git push