在~/.ssh/config中使用vim配置主机信息。
Host XXXuesr git
HostName www.XXX.com
Port 8000
从服务器上下载项目
git clone Host:projectName.gitHost为1中的XXX,projectName为服务器上的项目名称
更新本地代码
git commit -a -m 'some information about the current version'将代码同步到服务器
git push XXX:projectName