1.将仓库 clone
到本地:git clone, 例如:
// 需要配饰 ssh-key,才能使用下面命令
git clone git@github.com:medical-system-develop-team/medical-system.git
// 如果未配置 ssh-key,可以使用如下命令
git clone https://github.com/medical-system-develop-team/medical-system.git
2.获取更新的代码
git pull
3.提交代码
git add .
git commit -m "[对此次代码提交作说明,例如修改了什么,新增了什么]"
git push