标签:本地库 提交 com 通过 rem origin remote learn 常用
从远程库克隆
git clone git@github.com:michaelliao/gitskills.git
本地添加远程库
git remote add origin git@github.com:michaelliao/learngit.git
把本地库的所有内容推送到远程库上:
git push -u origin master
只要本地作了提交,就可以通过以下命令把本地master分支的最新修改推送到远程库
git push origin master
标签:本地库 提交 com 通过 rem origin remote learn 常用
原文地址:https://www.cnblogs.com/liyanghui/p/11029205.html