提交代码到远程仓库流程
1. 先添加到暂存区: git add .
2. 再提交到本地仓库 git commit -m "修改代码的备注"
例如: git commit -m "update token and https"[本次commit修改了token和https]
3. 最后push到远程仓库自己的分支
例如: git push origin yinyongjie_dev [push到远程仓库的yinyongjie_dev分支,不能直接push到master_team分支]
4. 接下来在给git web也没上操作,如下图
5. 请求已经提交,等待审核人审核
原文地址:http://blog.51cto.com/5731674/2086874
时间: 2024-10-11 00:13:35