Github 创建仓库了第一次提交

2021/9/11 6:07:54

本文主要是介绍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


这篇关于Github 创建仓库了第一次提交的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程