摘要: git 提交代码步骤 git pull // 拉取代码 git add . // 把所有代码提交都再存区 git commit -m '提交信息' git push // 把本地库的修改提交到远程库中 git 合并步骤 git checkout master/branch //切换到某个分支 gti 阅读全文