展示三个基本 Git 命令:git push -u origin master 推送并关联远程分支,git commit -m "msg" 提交更改,以及 git push 推送当前分支到远程。
git push -u origin master
git commit -m "msg"
git push
评论