增加文件
git add 文件名或文件夹名
提交
git commit -m "注释"
把本地master
分支的最新修改推送至GitHub
git push origin master
从远程库克隆项目
git clone git@github.com:michaelliao/gitskills.git
本文共 200 字,大约阅读时间需要 1 分钟。
增加文件
git add 文件名或文件夹名
提交
git commit -m "注释"
把本地master
分支的最新修改推送至GitHub
git push origin master
从远程库克隆项目
git clone git@github.com:michaelliao/gitskills.git
转载于:https://my.oschina.net/u/914897/blog/410672