赞
踩
注意:在提交代码之前需要把远程仓库的代码拉到本地
1.git pull 拉取远端的代码
2.git add file_name 将修改后的代码添加
3.git commit -m "feature(功能名):功能描述"
4.git push origin master 提交
最好不要用git push -f,因为git push -f 是把本地代码提交到远端并且覆盖远端代码