【Git】Github 创建仓库了如何第一次提交

虽然 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
posted @ 2021-09-10 22:59  努力挣钱的小鑫  阅读(87)  评论(0编辑  收藏  举报