git远程推送步骤

github地址:https://github.com/liuyi1804/gitskills.git

1、copy本地文件到git文件夹,创建并切换dev,打标签git tag V0.1。
2、执行git add auto_unittest/ git commit -m 'V0.1'
3、切回master分支后将dev分支上提交的内容合并到master上,git merge dev
4、连接远程库git remote add origin git@github.com:git账号/项目.git
5、推送master上的代码git push origin master.

原文地址:https://www.cnblogs.com/liuyi1804/p/12910898.html