首页 > 其他 > 详细

Github 创建仓库了第一次提交

时间:2021-09-11 19:05:34      阅读:13      评论:0      收藏:0      [点我收藏+]

虽然 github 在没有创建 README.md 文件的情况下有提升,但如果你创建了就不会有提升了,有点麻烦,自己也记不住这么多代码,索性记录下,免得下次再百度或者新建仓库。具体每行是干嘛的,都很简单,百度下就会了。

…or create a new repository on the command line

echo "# shangGuiGu-ES6" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:wangxin223355/shangGuiGu-ES6.git
git push -u origin main

下面这是已经建了仓库了再提交。

…or push an existing repository from the command line

git remote add origin git@github.com:wangxin223355/shangGuiGu-ES6.git
git branch -M main
git push -u origin main

Github 创建仓库了第一次提交

原文:https://www.cnblogs.com/cqkjxxxx/p/15253364.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!