在远程服务器上
$ cd /server/path/ $ git init --bare myproject.git
在本地
1> $ cd /client/path/
运行 git init2> $ git remote add origin ssh://root@hostname/server/path/
myproject.git
or2> $ git remote add origin git@hostname:
myproject.git
3> $ git status
第三步只是查看状态, 可以不要的, 也可以查看一下远程地址 $ git remote -v
然后, 可以添加一些初始化的数据
4> $ git add .
5> $ git commit -m "初始化"
6> $ git push origin master