安装git
#apt-get install git
配置git用户名
#git config –global user.name GIT-NAME
配置git邮箱
#git config –global user.email email-add@***.com
查看git配置信息
#git config –list
初始化git
#git init
从服务器拷贝文件到本地
#git clone https://github.com/username/repositoryname
从本地改完文件后上传
#git add filename
#git commit ‘ change notes for this time’
#git push -u origin master